diff --git a/vm/vm.go b/vm/vm.go
index 968ca10fa36b6911989a0f2e718bd4f44c9dc688..22172cb3ae0ab9a28525b89013272b59a0a4625c 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 {