When I am creating my own Hashing mechanism based on go-verkle library, I notice that there are couple functionality pretty necessary for the library to have but is missing currently. The first one is to create some HashedNode{}, and the second one is to get the starting point of starting Hashing Nodes for some given path.
I have added these two functions as HashNodeFromInternal and GetInternalNode. Please review.
When I am creating my own Hashing mechanism based on
go-verkle
library, I notice that there are couple functionality pretty necessary for the library to have but is missing currently. The first one is to create someHashedNode{}
, and the second one is to get the starting point of starting Hashing Nodes for some given path.I have added these two functions as
HashNodeFromInternal
andGetInternalNode
. Please review.