From abed373d5c1525e5f1d882c2c885b83dbad464c2 Mon Sep 17 00:00:00 2001 From: rigelrozanski Date: Thu, 22 Nov 2018 00:36:12 -0500 Subject: [PATCH] extra max block gas test at limit --- baseapp/baseapp_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/baseapp/baseapp_test.go b/baseapp/baseapp_test.go index 0994dd3613..f4b3b12861 100644 --- a/baseapp/baseapp_test.go +++ b/baseapp/baseapp_test.go @@ -920,6 +920,7 @@ func TestMaxBlockGasLimits(t *testing.T) { {newTxCounter(10, 0), 3, 10, false, 0}, {newTxCounter(10, 0), 10, 10, false, 0}, {newTxCounter(2, 7), 11, 9, false, 0}, + {newTxCounter(10, 0), 10, 10, false, 0}, // hit the limit but pass {newTxCounter(10, 0), 11, 10, true, 10}, {newTxCounter(10, 0), 15, 10, true, 10},