aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ethchain/contract.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/ethchain/contract.go b/ethchain/contract.go
index 70189593b..5dccb8728 100644
--- a/ethchain/contract.go
+++ b/ethchain/contract.go
@@ -30,6 +30,14 @@ func (c *Contract) RlpDecode(data []byte) {
c.state = ethutil.NewTrie(ethutil.Config.Db, decoder.Get(2).Interface())
}
+func (c *Contract) Addr(addr []byte) *ethutil.Value {
+ return ethutil.NewValueFromBytes([]byte(c.state.Get(string(addr))))
+}
+
+func (c *Contract) SetAddr(addr []byte, value interface{}) {
+ c.state.Update(string(addr), string(ethutil.NewValue(value).Encode()))
+}
+
func (c *Contract) State() *ethutil.Trie {
return c.state
}