func (k *KeyRing) RlpValue() *ethutil.Value { v := ethutil.EmptyValue() k.Each(func(keyPair *KeyPair) { v.Append(keyPair.RlpValue()) }) return v }
// Retuns the x element in data slice func (c *Closure) GetStorage(x *big.Int) *ethutil.Value { m := c.object.GetStorage(x) if m == nil { return ethutil.EmptyValue() } return m }
func (k *KeyPair) RlpEncode() []byte { return ethutil.EmptyValue().Append(k.PrivateKey).Append(k.PublicKey).Encode() }