fix rct trie multicodec type #171

Merged
telackey merged 1 commits from fix_rct_trie_multicodec_type into postgres_refactor 2021-12-17 18:13:31 +00:00

View File

@ -167,7 +167,7 @@ func (rt *rctTrie) getNodeFromDB(key []byte) (*EthRctTrie, error) {
return nil, err return nil, err
} }
tn := &TrieNode{ tn := &TrieNode{
cid: keccak256ToCid(MEthStateTrie, key), cid: keccak256ToCid(MEthTxReceiptTrie, key),
rawdata: rawdata, rawdata: rawdata,
} }