quorum/xeth/config.go

36 lines
890 B
Go
Raw Normal View History

2014-10-31 06:30:08 -07:00
package xeth
2014-08-04 07:25:53 -07:00
import "github.com/ethereum/go-ethereum/ethutil"
2014-08-04 07:25:53 -07:00
var cnfCtr = ethutil.Hex2Bytes("661005d2720d855f1d9976f88bb10c1a3398c77f")
2014-08-05 02:31:39 -07:00
type Config struct {
2014-10-31 06:30:08 -07:00
pipe *XEth
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:31:39 -07:00
func (self *Config) Get(name string) *Object {
2014-08-04 07:25:53 -07:00
configCtrl := self.pipe.World().safeGet(cnfCtr)
var addr []byte
switch name {
case "NameReg":
addr = []byte{0}
2014-08-07 06:26:07 -07:00
case "DnsReg":
2014-08-07 06:11:54 -07:00
objectAddr := configCtrl.GetStorage(ethutil.BigD([]byte{0}))
2014-08-07 06:26:07 -07:00
domainAddr := (&Object{self.pipe.World().safeGet(objectAddr.Bytes())}).StorageString("DnsReg").Bytes()
2014-08-07 06:11:54 -07:00
return &Object{self.pipe.World().safeGet(domainAddr)}
case "MergeMining":
addr = []byte{4}
2014-08-04 07:25:53 -07:00
default:
addr = ethutil.RightPadBytes([]byte(name), 32)
}
objectAddr := configCtrl.GetStorage(ethutil.BigD(addr))
2014-08-05 02:10:24 -07:00
2014-08-05 02:26:12 -07:00
return &Object{self.pipe.World().safeGet(objectAddr.Bytes())}
2014-08-04 07:25:53 -07:00
}
2014-08-05 02:31:39 -07:00
func (self *Config) Exist() bool {
2014-08-04 07:25:53 -07:00
return self.pipe.World().Get(cnfCtr) != nil
}