aboutsummaryrefslogtreecommitdiffstats
path: root/light
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2017-08-23 19:39:37 +0800
committerGitHub <noreply@github.com>2017-08-23 19:39:37 +0800
commit3c48a25762dfab9382791c33a2f5832466077ac3 (patch)
tree648c275563b46ba45e289774a40a0a761d16fc66 /light
parent286ec5df40d3707a7a2c98d49c8d324372ed29c2 (diff)
parent4ee92f2d193225e70c190194d005a6ce80e70236 (diff)
downloaddexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar
dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.gz
dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.bz2
dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.lz
dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.xz
dexon-3c48a25762dfab9382791c33a2f5832466077ac3.tar.zst
dexon-3c48a25762dfab9382791c33a2f5832466077ac3.zip
Merge pull request #15014 from rjl493456442/metropolis-eip658
core: add status as a consensus field in receipt
Diffstat (limited to 'light')
-rw-r--r--light/odr_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/light/odr_test.go b/light/odr_test.go
index bd1e976e8..c0c5438fd 100644
--- a/light/odr_test.go
+++ b/light/odr_test.go
@@ -180,7 +180,7 @@ func odrContractCall(ctx context.Context, db ethdb.Database, bc *core.BlockChain
context := core.NewEVMContext(msg, header, chain, nil)
vmenv := vm.NewEVM(context, st, config, vm.Config{})
gp := new(core.GasPool).AddGas(math.MaxBig256)
- ret, _, _ := core.ApplyMessage(vmenv, msg, gp)
+ ret, _, _, _ := core.ApplyMessage(vmenv, msg, gp)
res = append(res, ret...)
if st.Error() != nil {
return res, st.Error()