diff options
author | Felix Lange <fjl@twurst.com> | 2016-11-14 23:56:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-14 23:56:27 +0800 |
commit | d89ea3e6f90c32a97bad58b82a15af0d81f4250e (patch) | |
tree | 9acc32d1edca04b8a2b2894b3177f31c78f8298f /common | |
parent | ca73dea3b9bcdf3b5424b5c48c70817439e2e304 (diff) | |
parent | b10bcd924ba79f9faa5b8f2d273a7ee02d7b89f5 (diff) | |
download | dexon-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.gz 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.go | 2 |
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{}) |