From 8d2b5762de88c4c7d02147885d8ebcd4dab18392 Mon Sep 17 00:00:00 2001 From: Simon Warta Date: Sun, 16 Jul 2023 11:35:20 +0200 Subject: [PATCH] Fix JSON tag formatting --- types/msg.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/msg.go b/types/msg.go index 720b19861..ddbce9d14 100644 --- a/types/msg.go +++ b/types/msg.go @@ -248,7 +248,7 @@ type RedelegateMsg struct { type DistributionMsg struct { SetWithdrawAddress *SetWithdrawAddressMsg `json:"set_withdraw_address,omitempty"` WithdrawDelegatorReward *WithdrawDelegatorRewardMsg `json:"withdraw_delegator_reward,omitempty"` - FundCommunityPool *FundCommunityPoolMsg `json:"fund_community_pool",omitempty"` + FundCommunityPool *FundCommunityPoolMsg `json:"fund_community_pool,omitempty"` } // SetWithdrawAddressMsg is translated to a [MsgSetWithdrawAddress](https://github.com/cosmos/cosmos-sdk/blob/v0.42.4/proto/cosmos/distribution/v1beta1/tx.proto#L29-L37).