Tiny linter fix

This commit is contained in:
Christopher Goes 2018-06-11 03:22:38 +02:00
parent c9a977beae
commit b9c1bcbd74
No known key found for this signature in database
GPG Key ID: E828D98232D328D3
1 changed files with 1 additions and 0 deletions

View File

@ -52,6 +52,7 @@ func GenTx(msg sdk.Msg, seq []int64, priv ...crypto.PrivKeyEd25519) auth.StdTx {
return auth.NewStdTx(msg, fee, sigs)
}
// check a transaction result
func SignCheck(t *testing.T, app *baseapp.BaseApp, msg sdk.Msg, seq []int64, priv ...crypto.PrivKeyEd25519) sdk.Result {
tx := GenTx(msg, seq, priv...)
res := app.Check(tx)