aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorFelix Lange <fjl@twurst.com>2016-11-14 23:56:27 +0800
committerGitHub <noreply@github.com>2016-11-14 23:56:27 +0800
commitd89ea3e6f90c32a97bad58b82a15af0d81f4250e (patch)
tree9acc32d1edca04b8a2b2894b3177f31c78f8298f /common
parentca73dea3b9bcdf3b5424b5c48c70817439e2e304 (diff)
parentb10bcd924ba79f9faa5b8f2d273a7ee02d7b89f5 (diff)
downloaddexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar
dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.gz
dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.bz2
dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.lz
dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.xz
dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.zst
dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.zip
Merge pull request #3253 from zsfelfoldi/light-topic3
Light client bugfixes and updates
Diffstat (limited to 'common')
-rw-r--r--common/registrar/ethreg/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/registrar/ethreg/api.go b/common/registrar/ethreg/api.go
index a3c48345e..a32653554 100644
--- a/common/registrar/ethreg/api.go
+++ b/common/registrar/ethreg/api.go
@@ -187,7 +187,7 @@ func (be *registryAPIBackend) Call(fromStr, toStr, valueStr, gasStr, gasPriceStr
if gasPrice.BitLen() == 0 {
gasPrice = new(big.Int).Mul(big.NewInt(50), common.Shannon)
}
- msg := types.NewMessage(from.Address(), to, 0, common.Big(valueStr), gas, gasPrice, common.FromHex(dataStr))
+ msg := types.NewMessage(from.Address(), to, 0, common.Big(valueStr), gas, gasPrice, common.FromHex(dataStr), false)
header := be.bc.CurrentBlock().Header()
vmenv := core.NewEnv(statedb, be.config, be.bc, msg, header, vm.Config{})