(x interface{})
| 238 | } |
| 239 | |
| 240 | func rlpHash(x interface{}) (h common.Hash) { |
| 241 | hw := sha3.NewKeccak256() |
| 242 | rlp.Encode(hw, x) |
| 243 | hw.Sum(h[:0]) |
| 244 | return h |
| 245 | } |
| 246 | |
| 247 | // Body is a simple (mutable, non-safe) data container for storing and moving |
| 248 | // a block's data contents (transactions and uncles) together. |
no outgoing calls
no test coverage detected