Browse Source

fix test

pull/994/head
Ethan Buchman 7 years ago
parent
commit
91acc51cd1
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      types/params_test.go

+ 2
- 2
types/params_test.go View File

@ -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,


Loading…
Cancel
Save