You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you try BankMsg::Send{amount: vec![]} or BankMsg::Send{amount: coin(0, "foo")} you will get an error from the Cosmos SDK bank module. We should replicate this behaviour in the multitest system to detect such errors earlier on.
Check is amount.iter().filter(|x| !x.amount.is_zero()).len() == 0. In that case, return error
The text was updated successfully, but these errors were encountered:
This matches the actual behaviour of wasmd.
If you try
BankMsg::Send{amount: vec![]}
orBankMsg::Send{amount: coin(0, "foo")}
you will get an error from the Cosmos SDK bank module. We should replicate this behaviour in the multitest system to detect such errors earlier on.Check is
amount.iter().filter(|x| !x.amount.is_zero()).len() == 0
. In that case, return errorThe text was updated successfully, but these errors were encountered: