From bdf55d9610dc0cff23cc0d79c1959c343e8f9f8e Mon Sep 17 00:00:00 2001 From: Jack Zampolin Date: Fri, 1 Mar 2019 11:15:53 -0800 Subject: [PATCH] Merge PR #3778: Fix improper distr msg tag --- x/distribution/types/msg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x/distribution/types/msg.go b/x/distribution/types/msg.go index b53114d012d1..30f170f03358 100644 --- a/x/distribution/types/msg.go +++ b/x/distribution/types/msg.go @@ -63,7 +63,7 @@ func NewMsgWithdrawDelegatorReward(delAddr sdk.AccAddress, valAddr sdk.ValAddres } func (msg MsgWithdrawDelegatorReward) Route() string { return MsgRoute } -func (msg MsgWithdrawDelegatorReward) Type() string { return "withdraw_delegation_reward" } +func (msg MsgWithdrawDelegatorReward) Type() string { return "withdraw_delegator_reward" } // Return address that must sign over msg.GetSignBytes() func (msg MsgWithdrawDelegatorReward) GetSigners() []sdk.AccAddress {