ethereum / go-verkle

A go implementation of Verkle trees
The Unlicense
209 stars 63 forks source link

Feature: Add functionality of producing hashedNode #438

Open tianyueli8227 opened 2 months ago

tianyueli8227 commented 2 months ago

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.