update msg spec to match code (#691)

This commit is contained in:
Paul Downing 2020-10-14 13:50:43 -05:00 committed by GitHub
parent 6e6ed69383
commit 74bbb6a0d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,7 @@ type MsgWithdraw struct {
// MsgClaimReward message type used to claim HARD tokens // MsgClaimReward message type used to claim HARD tokens
type MsgClaimReward struct { type MsgClaimReward struct {
Sender sdk.AccAddress `json:"sender" yaml:"sender"` Sender sdk.AccAddress `json:"sender" yaml:"sender"`
Receiver sdk.AccAddress `json:"receiver" yaml:"receiver"`
DepositDenom string `json:"deposit_denom" yaml:"deposit_denom"` DepositDenom string `json:"deposit_denom" yaml:"deposit_denom"`
RewardMultiplier string `json:"reward_multiplier" yaml:"reward_multiplier"` RewardMultiplier string `json:"reward_multiplier" yaml:"reward_multiplier"`
DepositType string `json:"deposit_type" yaml:"deposit_type"` DepositType string `json:"deposit_type" yaml:"deposit_type"`