aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/interpreter.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-16 17:26:50 +0800
committerWei-Ning Huang <w@dexon.org>2019-04-09 21:32:53 +0800
commitf1f0e7d0b962c802124b2ed9123d3e9bd9cd9644 (patch)
tree29064c95d8e2639f277098e9a20a75f00e86ae68 /core/vm/interpreter.go
parentdfd3d209ddb5c48ced410eb543ee9b17cffc575e (diff)
downloaddexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.tar
dexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.tar.gz
dexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.tar.bz2
dexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.tar.lz
dexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.tar.xz
dexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.tar.zst
dexon-f1f0e7d0b962c802124b2ed9123d3e9bd9cd9644.zip
core: fix light node synchronization issue (#30)
InsertChain() need to record the correct roundHeight mapping in order to process snapshotRoundHeight() governance method correctly.
Diffstat (limited to 'core/vm/interpreter.go')
-rw-r--r--core/vm/interpreter.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/vm/interpreter.go b/core/vm/interpreter.go
index b5e35f1a4..ffe5ff626 100644
--- a/core/vm/interpreter.go
+++ b/core/vm/interpreter.go
@@ -46,6 +46,9 @@ type Config struct {
EWASMInterpreter string
// Type of the EVM interpreter
EVMInterpreter string
+
+ // Whether or not we are a block proposer.
+ IsBlockProposer bool
}
// Interpreter is used to run Ethereum based contracts and will utilise the