We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ccd1e79 commit 47c322bCopy full SHA for 47c322b
1 file changed
kernel/evm/evm.go
@@ -25,7 +25,8 @@ type EVMProxy interface {
25
func NewEVMProxy(manager contract.Manager) (EVMProxy, error) {
26
registry := manager.GetKernRegistry()
27
p := proxy{}
28
- registry.RegisterKernMethod("$evm", "SendTransaction", p.sendTransaction)
+ // SendTransaction is not used currently
29
+ // registry.RegisterKernMethod("$evm", "SendTransaction", p.sendTransaction)
30
registry.RegisterKernMethod("$evm", "SendRawTransaction", p.sendRawTransaction)
31
registry.RegisterKernMethod("$evm", "ContractCall", p.ContractCall)
32
return &p, nil
0 commit comments