diff options
author | obscuren <geffobscura@gmail.com> | 2014-03-21 06:38:16 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-03-21 06:38:16 +0800 |
commit | f567f89b994bf28f908410223084a6702d05d156 (patch) | |
tree | 1ec45639e8ec6787d1d97ec59c2bd78a7f90d9b0 /ethchain/closure.go | |
parent | 7705b23f248156878d00c301fbbadafedaf7e3d2 (diff) | |
download | go-tangerine-f567f89b994bf28f908410223084a6702d05d156.tar go-tangerine-f567f89b994bf28f908410223084a6702d05d156.tar.gz go-tangerine-f567f89b994bf28f908410223084a6702d05d156.tar.bz2 go-tangerine-f567f89b994bf28f908410223084a6702d05d156.tar.lz go-tangerine-f567f89b994bf28f908410223084a6702d05d156.tar.xz go-tangerine-f567f89b994bf28f908410223084a6702d05d156.tar.zst go-tangerine-f567f89b994bf28f908410223084a6702d05d156.zip |
Added address to account and contract
Contract and account now both have an address field or method for the
sake of simplicity.
Diffstat (limited to 'ethchain/closure.go')
-rw-r--r-- | ethchain/closure.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ethchain/closure.go b/ethchain/closure.go index 9453ce22c..0eef866d0 100644 --- a/ethchain/closure.go +++ b/ethchain/closure.go @@ -15,6 +15,7 @@ type ClosureBody interface { Callee ethutil.RlpEncodable GetMem(int64) *ethutil.Value + Address() []byte } // Basic inline closure object which implement the 'closure' interface |