aboutsummaryrefslogtreecommitdiffstats
path: root/internal
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 /internal
parentca73dea3b9bcdf3b5424b5c48c70817439e2e304 (diff)
parentb10bcd924ba79f9faa5b8f2d273a7ee02d7b89f5 (diff)
downloadgo-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar
go-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.gz
go-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.bz2
go-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.lz
go-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.xz
go-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.tar.zst
go-tangerine-d89ea3e6f90c32a97bad58b82a15af0d81f4250e.zip
Merge pull request #3253 from zsfelfoldi/light-topic3
Light client bugfixes and updates
Diffstat (limited to 'internal')
-rw-r--r--internal/ethapi/api.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/ethapi/api.go b/internal/ethapi/api.go
index 0e4dd4524..a25eff5ed 100644
--- a/internal/ethapi/api.go
+++ b/internal/ethapi/api.go
@@ -545,7 +545,7 @@ func (s *PublicBlockChainAPI) doCall(ctx context.Context, args CallArgs, blockNr
if gasPrice.Cmp(common.Big0) == 0 {
gasPrice = new(big.Int).Mul(big.NewInt(50), common.Shannon)
}
- msg := types.NewMessage(addr, args.To, 0, args.Value.BigInt(), gas, gasPrice, common.FromHex(args.Data))
+ msg := types.NewMessage(addr, args.To, 0, args.Value.BigInt(), gas, gasPrice, common.FromHex(args.Data), false)
// Execute the call and return
vmenv, vmError, err := s.b.GetVMEnv(ctx, msg, state, header)