From 552bca29b050561a111eddd521b0b487865fbb97 Mon Sep 17 00:00:00 2001 From: Eric Meyer Date: Wed, 1 Nov 2017 09:01:48 -0500 Subject: [PATCH] Run go fmt --- core/converting_a_geth_block_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/converting_a_geth_block_test.go b/core/converting_a_geth_block_test.go index 70d29d8e..75b81fba 100644 --- a/core/converting_a_geth_block_test.go +++ b/core/converting_a_geth_block_test.go @@ -19,9 +19,9 @@ var _ = Describe("Conversion of GethBlock to core.Block", func() { time := int64(140000000) header := types.Header{ - GasUsed: big.NewInt(gasUsed), - Number: big.NewInt(blockNumber), - Time: big.NewInt(time), + GasUsed: big.NewInt(gasUsed), + Number: big.NewInt(blockNumber), + Time: big.NewInt(time), GasLimit: big.NewInt(gasLimit), } block := types.NewBlock(&header, []*types.Transaction{}, []*types.Header{}, []*types.Receipt{})