Renamed object to Object

This commit is contained in:
obscuren
2014-08-05 11:26:12 +02:00
parent 4f0bda403e
commit e71b198e3d
4 changed files with 10 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ type config struct {
pipe *Pipe
}
func (self *config) Get(name string) *object {
func (self *config) Get(name string) *Object {
configCtrl := self.pipe.World().safeGet(cnfCtr)
var addr []byte
@@ -21,7 +21,7 @@ func (self *config) Get(name string) *object {
objectAddr := configCtrl.GetStorage(ethutil.BigD(addr))
return &object{self.pipe.World().safeGet(objectAddr.Bytes())}
return &Object{self.pipe.World().safeGet(objectAddr.Bytes())}
}
func (self *config) Exist() bool {