Skip to content

Commit

Permalink
test: restore multi send test
Browse files Browse the repository at this point in the history
  • Loading branch information
dudong2 committed Feb 7, 2024
1 parent f34d6fa commit 7c4fb92
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions ethereum/eip712/eip712_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,28 @@ func (suite *EIP712TestSuite) TestEIP712() {
timeoutHeight: 1000,
expectSuccess: false,
},
{
title: "Succeeds - MsgMultiSend",
msgs: []sdk.Msg{
banktypes.NewMsgMultiSend(
banktypes.NewInput(
suite.createTestAddress(),
suite.makeCoins(suite.denom, math.NewInt(100)),
),
[]banktypes.Output{
banktypes.NewOutput(
suite.createTestAddress(),
suite.makeCoins(suite.denom, math.NewInt(50)),
),
banktypes.NewOutput(
suite.createTestAddress(),
suite.makeCoins(suite.denom, math.NewInt(50)),
),
},
),
},
expectSuccess: true,
},
}

for _, tc := range testCases {
Expand Down

0 comments on commit 7c4fb92

Please sign in to comment.