EncodeRLP implements rlp.Encoder.
(w io.Writer)
| 122 | |
| 123 | // EncodeRLP implements rlp.Encoder. |
| 124 | func (c *stateObject) EncodeRLP(w io.Writer) error { |
| 125 | return rlp.Encode(w, c.data) |
| 126 | } |
| 127 | |
| 128 | // setError remembers the first non-nil error it is called with. |
| 129 | func (self *stateObject) setError(err error) { |