diff --git a/types/params_test.go b/types/params_test.go index a864ce83..f645585e 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,