Skip to content

Commit 93fb314

Browse files
committed
remove typo
1 parent 285aa4c commit 93fb314

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/e2e/app/app.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ func (app *Application) FinalizeBlock(_ context.Context, req *abci.RequestFinali
204204
//Further parse the value.
205205
value, _, err = parseValue(value)
206206
if err != nil {
207-
panic(err) // shouldn't since the voteExtension value should be splittable.
207+
panic(err) // shouldn't since the voteExtension value should be split-able.
208208
}
209209
} else if key == prefixReservedKey {
210210
panic(fmt.Errorf("detected a transaction with key %q; this key is reserved and should have been filtered out", prefixReservedKey))
@@ -791,5 +791,5 @@ func parseVoteExtension(cfg *Config, ext []byte) (int64, error) {
791791
return num, nil
792792
}
793793
//Return 0 here so the state is not updated and the system may quiesce.
794-
return int64(0), nil
794+
return 0, nil
795795
}

0 commit comments

Comments
 (0)