lint fix, merge fix

This commit is contained in:
rigelrozanski
2018-11-21 02:02:15 -05:00
parent 70e60c2f30
commit 6fd3132e71
4 changed files with 4 additions and 7 deletions
+1 -1
View File
@@ -262,7 +262,7 @@ func CollectStdTxs(cdc *codec.Codec, moniker string, genTxsDir string, genDoc tm
"account %v not in genesis.json: %+v", addr, addrMap)
}
if acc.Coins.AmountOf(msg.Delegation.Denom).LT(msg.Delegation.Amount) {
err = fmt.Errorf("insufficient fund for the delegation: %s < %s",
err = fmt.Errorf("insufficient fund for the delegation: %v < %v",
acc.Coins.AmountOf(msg.Delegation.Denom), msg.Delegation.Amount)
}