From 91acc51cd11ab8a64dcf91e88b2da8811c567e80 Mon Sep 17 00:00:00 2001 From: Ethan Buchman Date: Thu, 21 Dec 2017 17:52:06 -0500 Subject: [PATCH] fix test --- types/params_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/types/params_test.go b/types/params_test.go index a864ce83e..f645585eb 100644 --- a/types/params_test.go +++ b/types/params_test.go @@ -48,11 +48,11 @@ func makeParams(blockBytes, blockTx, blockGas, txBytes, BlockSize: BlockSize{ MaxBytes: blockBytes, MaxTxs: blockTx, - MaxGas: blockGas, + MaxGas: int64(blockGas), }, TxSize: TxSize{ MaxBytes: txBytes, - MaxGas: txGas, + MaxGas: int64(txGas), }, BlockGossip: BlockGossip{ BlockPartSizeBytes: partSize,