Skip to content

Commit

Permalink
Merge pull request #14 from Kava-Labs/fix/evm-migration
Browse files Browse the repository at this point in the history
fix denoms_to_claim type
  • Loading branch information
DracoLi authored Oct 7, 2022
2 parents 9b42e18 + ee67e8f commit 800edd7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions x/evm/migrations/v2/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ var (
MsgValueTypeName: "MsgValueIncentiveClaimHardReward",
ValueTypes: []types.EIP712MsgAttrType{
{Name: "sender", Type: "string"},
{Name: "denoms_to_claim", Type: "IncentiveSelection"},
{Name: "denoms_to_claim", Type: "IncentiveSelection[]"},
},
NestedTypes: []types.EIP712NestedMsgType{
{
Expand All @@ -107,7 +107,7 @@ var (
MsgValueTypeName: "MsgValueIncentiveClaimDelegatorReward",
ValueTypes: []types.EIP712MsgAttrType{
{Name: "sender", Type: "string"},
{Name: "denoms_to_claim", Type: "IncentiveSelection"},
{Name: "denoms_to_claim", Type: "IncentiveSelection[]"},
},
NestedTypes: []types.EIP712NestedMsgType{
{
Expand All @@ -124,7 +124,7 @@ var (
MsgValueTypeName: "MsgValueIncentiveClaimSwapReward",
ValueTypes: []types.EIP712MsgAttrType{
{Name: "sender", Type: "string"},
{Name: "denoms_to_claim", Type: "IncentiveSelection"},
{Name: "denoms_to_claim", Type: "IncentiveSelection[]"},
},
NestedTypes: []types.EIP712NestedMsgType{
{
Expand All @@ -141,7 +141,7 @@ var (
MsgValueTypeName: "MsgValueIncentiveClaimSavingsReward",
ValueTypes: []types.EIP712MsgAttrType{
{Name: "sender", Type: "string"},
{Name: "denoms_to_claim", Type: "IncentiveSelection"},
{Name: "denoms_to_claim", Type: "IncentiveSelection[]"},
},
NestedTypes: []types.EIP712NestedMsgType{
{
Expand All @@ -158,7 +158,7 @@ var (
MsgValueTypeName: "MsgValueIncentiveClaimEarnReward",
ValueTypes: []types.EIP712MsgAttrType{
{Name: "sender", Type: "string"},
{Name: "denoms_to_claim", Type: "IncentiveSelection"},
{Name: "denoms_to_claim", Type: "IncentiveSelection[]"},
},
NestedTypes: []types.EIP712NestedMsgType{
{
Expand Down

0 comments on commit 800edd7

Please sign in to comment.