aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-09-17 16:35:42 +0800
committerGitHub <noreply@github.com>2018-09-17 16:35:42 +0800
commitcc21928e1246f860ede5160986ec3a95956fc8d4 (patch)
treeabc73a40bca6026c8addc3af2262b6446180777f /core
parent7c71e936a716794709e7a980b7da9010c4d0a98c (diff)
parent4bb25042eb957662155079e06bb2efbdd866eb99 (diff)
downloadgo-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.tar
go-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.tar.gz
go-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.tar.bz2
go-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.tar.lz
go-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.tar.xz
go-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.tar.zst
go-tangerine-cc21928e1246f860ede5160986ec3a95956fc8d4.zip
Merge pull request #17622 from karalabe/chain-maker-seal
consensus/clique, core: chain maker clique + error tests
Diffstat (limited to 'core')
-rw-r--r--core/chain_makers.go10
1 files changed, 8 insertions, 2 deletions
diff --git a/core/chain_makers.go b/core/chain_makers.go
index de0fc6be9..351673477 100644
--- a/core/chain_makers.go
+++ b/core/chain_makers.go
@@ -67,6 +67,11 @@ func (b *BlockGen) SetExtra(data []byte) {
b.header.Extra = data
}
+// SetNonce sets the nonce field of the generated block.
+func (b *BlockGen) SetNonce(nonce types.BlockNonce) {
+ b.header.Nonce = nonce
+}
+
// AddTx adds a transaction to the generated block. If no coinbase has
// been set, the block's coinbase is set to the zero address.
//
@@ -190,13 +195,14 @@ func GenerateChain(config *params.ChainConfig, parent *types.Block, engine conse
if config.DAOForkSupport && config.DAOForkBlock != nil && config.DAOForkBlock.Cmp(b.header.Number) == 0 {
misc.ApplyDAOHardFork(statedb)
}
- // Execute any user modifications to the block and finalize it
+ // Execute any user modifications to the block
if gen != nil {
gen(i, b)
}
-
if b.engine != nil {
+ // Finalize and seal the block
block, _ := b.engine.Finalize(b.chainReader, b.header, statedb, b.txs, b.uncles, b.receipts)
+
// Write state changes to db
root, err := statedb.Commit(config.IsEIP158(b.header.Number))
if err != nil {