go-ethereum/ethpipe/config.go

30 lines
608 B
Go
Raw Normal View History

2014-08-04 17:25:53 +03:00
package ethpipe
2014-08-05 12:10:24 +03:00
import "github.com/ethereum/eth-go/ethutil"
2014-08-04 17:25:53 +03:00
var cnfCtr = ethutil.Hex2Bytes("661005d2720d855f1d9976f88bb10c1a3398c77f")
2014-08-05 12:31:39 +03:00
type Config struct {
2014-08-04 17:25:53 +03:00
pipe *Pipe
}
2014-08-05 12:31:39 +03:00
func (self *Config) Get(name string) *Object {
2014-08-04 17:25:53 +03:00
configCtrl := self.pipe.World().safeGet(cnfCtr)
var addr []byte
switch name {
case "NameReg":
addr = []byte{0}
default:
addr = ethutil.RightPadBytes([]byte(name), 32)
}
objectAddr := configCtrl.GetStorage(ethutil.BigD(addr))
2014-08-05 12:10:24 +03:00
2014-08-05 12:26:12 +03:00
return &Object{self.pipe.World().safeGet(objectAddr.Bytes())}
2014-08-04 17:25:53 +03:00
}
2014-08-05 12:31:39 +03:00
func (self *Config) Exist() bool {
2014-08-04 17:25:53 +03:00
return self.pipe.World().Get(cnfCtr) != nil
}