Skip to content

Commit

Permalink
Merge branch 'add-whitelist' of github.com:CudoVentures/cosmos-gravit…
Browse files Browse the repository at this point in the history
…y-bridge into add-whitelist
  • Loading branch information
maptuhec committed Mar 15, 2022
2 parents b93e74f + 105945b commit 19948d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions module/x/gravity/handler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ func TestHandleMsgSendToEth(t *testing.T) {

// send transaction not meeting the minimum transaction requirement
sendingCoin.Amount = sdk.NewInt(4)
expectedErrMsg := "amount does not meet minimum sending amount requirement: 5"
expectedErrMsg := "amount does not meet minimum sending amount requirement: 5acudos: invalid"
msg3 := &types.MsgSendToEth{
Sender: userCosmosAddr.String(),
EthDest: ethDestination,
Expand All @@ -91,7 +91,7 @@ func TestHandleMsgSendToEth(t *testing.T) {
// send transaction not meeting the minimum transaction FEE requirement
sendingCoin.Amount = sdk.NewInt(40)
feeCoin.Amount = sdk.NewInt(4)
expectedErrMsg = "fee does not meet minimum fee requirement: 5"
expectedErrMsg = "fee does not meet minimum fee requirement: 5acudos: invalid"
msg4 := &types.MsgSendToEth{
Sender: userCosmosAddr.String(),
EthDest: ethDestination,
Expand Down

0 comments on commit 19948d2

Please sign in to comment.