aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vm.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-01-02 23:14:12 +0800
committerobscuren <geffobscura@gmail.com>2015-01-02 23:14:12 +0800
commit4dc7ee90879d7146c9e5004c04992c90ad78f632 (patch)
tree7521046c38bb2e7c69b9813b669c87a8a55d4641 /vm/vm.go
parente2d1d832efe0623539c9d37ca8aee17d44e47067 (diff)
downloadgo-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.tar
go-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.tar.gz
go-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.tar.bz2
go-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.tar.lz
go-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.tar.xz
go-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.tar.zst
go-tangerine-4dc7ee90879d7146c9e5004c04992c90ad78f632.zip
Closure => Context
Diffstat (limited to 'vm/vm.go')
-rw-r--r--vm/vm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/vm/vm.go b/vm/vm.go
index 22172cb3a..a5ea297b3 100644
--- a/vm/vm.go
+++ b/vm/vm.go
@@ -20,7 +20,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 ContextRef, code []byte, value, gas, price *big.Int, data []byte) (ret []byte, err error) {
panic("not implemented")
}