aboutsummaryrefslogtreecommitdiffstats
path: root/vm
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-13 05:24:27 +0800
committerobscuren <geffobscura@gmail.com>2014-12-13 05:24:27 +0800
commit8577e4171ae594c722bad4e034e2b87f15986be3 (patch)
treecbbfb7689c16e1e06637a335f138da5d956c86d2 /vm
parent06e76422b5848283fac78b80ca7a392591bc58e4 (diff)
downloadgo-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.tar
go-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.tar.gz
go-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.tar.bz2
go-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.tar.lz
go-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.tar.xz
go-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.tar.zst
go-tangerine-8577e4171ae594c722bad4e034e2b87f15986be3.zip
Panic for "Vm"
Diffstat (limited to 'vm')
-rw-r--r--vm/vm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm.go b/vm/vm.go
index 968ca10fa..22172cb3a 100644
--- a/vm/vm.go
+++ b/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) {
- return nil, nil
+ panic("not implemented")
}
func (self *Vm) Env() Environment {