Merge pull request #171 from vulcanize/fix_rct_trie_multicodec_type

fix rct trie multicodec type
This commit is contained in:
Ian Norden 2021-12-17 12:13:31 -06:00 committed by GitHub
commit 5d02ba456c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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