diff options
author | Determinant <[email protected]> | 2020-08-19 20:32:18 -0400 |
---|---|---|
committer | Determinant <[email protected]> | 2020-08-19 20:32:18 -0400 |
commit | 1e9599e88a5d88e0090b0ebddfae756e343e605a (patch) | |
tree | 92300da4e82db8755ea07f84be61def1079e2840 /consensus/ethash/consensus.go | |
parent | ec103c07738b3db70501dee7a7da113edbb68875 (diff) |
make the basic X-to-C logic work
Diffstat (limited to 'consensus/ethash/consensus.go')
-rw-r--r-- | consensus/ethash/consensus.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/consensus/ethash/consensus.go b/consensus/ethash/consensus.go index c325eea..dc88a79 100644 --- a/consensus/ethash/consensus.go +++ b/consensus/ethash/consensus.go @@ -576,7 +576,7 @@ func (ethash *Ethash) FinalizeAndAssemble(chain consensus.ChainReader, header *t header.Root = state.IntermediateRoot(chain.Config().IsEIP158(header.Number)) // Header seems complete, assemble into a block and return - return types.NewBlock(header, txs, uncles, receipts), nil + return types.NewBlock(header, txs, uncles, receipts, nil), nil } // SealHash returns the hash of a block prior to it being sealed. |