fixed typo
This commit is contained in:
parent
eaf49a2dfb
commit
e27b83805a
|
@ -231,7 +231,7 @@ type StakeValidatorOutput struct {
|
|||
|
||||
Commission sdk.Rat `json:"commission"` // XXX the commission rate of fees charged to any delegators
|
||||
CommissionMax sdk.Rat `json:"commission_max"` // XXX maximum commission rate which this validator can ever charge
|
||||
CommissionChangeRate sdk.Rat `json:"commisrsion_change_rate"` // XXX maximum daily increase of the validator commission
|
||||
CommissionChangeRate sdk.Rat `json:"commission_change_rate"` // XXX maximum daily increase of the validator commission
|
||||
CommissionChangeToday sdk.Rat `json:"commission_change_today"` // XXX commission rate change today, reset each day (UTC time)
|
||||
|
||||
// fee related
|
||||
|
|
|
@ -219,8 +219,8 @@ func (msg MsgBeginRedelegate) GetSignBytes() []byte {
|
|||
SharesAmount string `json:"shares"`
|
||||
}{
|
||||
DelegatorAddr: msg.DelegatorAddr,
|
||||
ValidatorSrcAddr: msg.ValidatorSrcAddr.Bytes(),
|
||||
ValidatorDstAddr: msg.ValidatorDstAddr.Bytes(),
|
||||
ValidatorSrcAddr: msg.ValidatorSrcAddr,
|
||||
ValidatorDstAddr: msg.ValidatorDstAddr,
|
||||
SharesAmount: msg.SharesAmount.String(),
|
||||
})
|
||||
if err != nil {
|
||||
|
|
Loading…
Reference in New Issue