You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it seems that rlpToMerkleNode needs to have an instance of a merkle tree. Does it actually need any fields of the Merkle tree to work? It seems it shouldn't, so it should either be static, or just an exported function
The text was updated successfully, but these errors were encountered:
rlpToMerkleNode : (rlpEncodedNode: Buffer) => MerklePatriciaTreeNode<V>
references the CachedMerklePatriciaTree class parameter V.
If rlpToMerkleNode is static, we will not be able to return a MerklePatriciaTreeNode<V>. We might have to return a generic MerklePatriciaTreeNode<any>.
Currently, it seems that rlpToMerkleNode needs to have an instance of a merkle tree. Does it actually need any fields of the Merkle tree to work? It seems it shouldn't, so it should either be static, or just an exported function
The text was updated successfully, but these errors were encountered: