NODE CODE BELOW newNode() is a constructor for the node object
()
| 1056 | |
| 1057 | // newNode() is a constructor for the node object |
| 1058 | func newNode() (n *node) { |
| 1059 | n = new(node) |
| 1060 | n.Key = new(key) |
| 1061 | return |
| 1062 | } |
| 1063 | |
| 1064 | // bytes() returns the marshalled node |
| 1065 | func (x *node) bytes() ([]byte, lib.ErrorI) { |
no outgoing calls