mirror of https://github.com/status-im/nim-eth.git
27 lines
937 B
Nim
27 lines
937 B
Nim
import
|
|
eth/trie/[trie_defs, db, hexary], eth/rlp,
|
|
eth_types
|
|
|
|
proc getAccount*(db: TrieDatabaseRef,
|
|
rootHash: KeccakHash,
|
|
account: EthAddress): Account =
|
|
let trie = initSecureHexaryTrie(db, rootHash)
|
|
let data = trie.get(unnecessary_OpenArrayToRange account)
|
|
if data.len > 0:
|
|
result = rlp.decode(data, Account)
|
|
else:
|
|
result = newAccount()
|
|
|
|
proc getContractCode*(chain: AbstractChainDB, req: ContractCodeRequest): Blob {.gcsafe.} =
|
|
let b = chain.getBlockHeader(req.blockHash)
|
|
if b.hasData:
|
|
let acc = getAccount(chain.getTrieDB, b.stateRoot, req.key)
|
|
result = chain.getCodeByHash(acc.codeHash)
|
|
|
|
proc getStorageNode*(chain: AbstractChainDB, hash: KeccakHash): Blob =
|
|
let db = chain.getTrieDB
|
|
return db.get(hash.data)
|
|
# let trie = initSecureHexaryTrie(db, emptyRlpHash) # TODO emptyRlpHash is not correct here
|
|
# return trie.get(unnecessary_OpenArrayToRange hash.data)
|
|
|