aboutsummaryrefslogtreecommitdiffstats
path: root/core/vm/evm.go
diff options
context:
space:
mode:
authorWei-Ning Huang <w@dexon.org>2018-11-16 17:26:50 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:18 +0800
commitfd188f89845ea16c40c2b6af2ffa67b0f445b854 (patch)
tree9db6403388483324e6e7916fae3f8c2249f3ffdc /core/vm/evm.go
parent652ec743c6e05a94212745daec4c10565e57524b (diff)
downloadgo-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.tar
go-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.tar.gz
go-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.tar.bz2
go-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.tar.lz
go-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.tar.xz
go-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.tar.zst
go-tangerine-fd188f89845ea16c40c2b6af2ffa67b0f445b854.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/evm.go')
-rw-r--r--core/vm/evm.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/vm/evm.go b/core/vm/evm.go
index 865ab0d5b..64f71e530 100644
--- a/core/vm/evm.go
+++ b/core/vm/evm.go
@@ -479,3 +479,6 @@ func (evm *EVM) Create2(caller ContractRef, code []byte, gas uint64, endowment *
// ChainConfig returns the environment's chain configuration
func (evm *EVM) ChainConfig() *params.ChainConfig { return evm.chainConfig }
+
+// IsBlockProposer returns whether or not we are a block proposer.
+func (evm *EVM) IsBlockProposer() bool { return evm.vmConfig.IsBlockProposer }