block: fix max commit sig size (#5567)

This commit is contained in:
Callum Waters
2020-10-26 10:18:59 +01:00
parent a0f08686fb
commit c4f1b2d7db
4 changed files with 21 additions and 27 deletions

View File

@@ -25,8 +25,8 @@ func TestTxFilter(t *testing.T) {
tx types.Tx
isErr bool
}{
{types.Tx(tmrand.Bytes(2187)), false},
{types.Tx(tmrand.Bytes(2188)), true},
{types.Tx(tmrand.Bytes(2155)), false},
{types.Tx(tmrand.Bytes(2156)), true},
{types.Tx(tmrand.Bytes(3000)), true},
}