mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-29 04:42:54 +00:00
Panic for "Vm"
This commit is contained in:
parent
06e76422b5
commit
8577e4171a
1 changed files with 1 additions and 1 deletions
2
vm/vm.go
2
vm/vm.go
|
|
@ -21,7 +21,7 @@ func New(env Environment, typ Type) VirtualMachine {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *Vm) Run(me, caller ClosureRef, code []byte, value, gas, price *big.Int, data []byte) (ret []byte, err error) {
|
func (self *Vm) Run(me, caller ClosureRef, code []byte, value, gas, price *big.Int, data []byte) (ret []byte, err error) {
|
||||||
return nil, nil
|
panic("not implemented")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *Vm) Env() Environment {
|
func (self *Vm) Env() Environment {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue