mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
core/vm: two sigs were wrong
This commit is contained in:
parent
634755bf63
commit
ec0d4d73cc
1 changed files with 2 additions and 2 deletions
|
|
@ -250,7 +250,7 @@ func eeiFuncs(in *InterpreterEWASM) []wasm.Function {
|
|||
Body: &wasm.FunctionBody{},
|
||||
},
|
||||
{
|
||||
Sig: &eeiTypes.Entries[2],
|
||||
Sig: &eeiTypes.Entries[1],
|
||||
Host: reflect.ValueOf(func(p *exec.Process, r int32) { getCallValue(p, in, r) }),
|
||||
Body: &wasm.FunctionBody{},
|
||||
},
|
||||
|
|
@ -300,7 +300,7 @@ func eeiFuncs(in *InterpreterEWASM) []wasm.Function {
|
|||
Body: &wasm.FunctionBody{},
|
||||
},
|
||||
{
|
||||
Sig: &eeiTypes.Entries[5],
|
||||
Sig: &eeiTypes.Entries[1],
|
||||
Host: reflect.ValueOf(func(p *exec.Process, v int32) { getTxGasPrice(p, in, v) }),
|
||||
Body: &wasm.FunctionBody{},
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue