EVM-C: add call depth query

This commit is contained in:
Paweł Bylica 2016-09-26 16:28:12 +02:00
parent 344552bbe1
commit 9c2ef341a7
1 changed files with 2 additions and 1 deletions

View File

@ -101,7 +101,8 @@ enum evm_query_key {
EVM_CODE_BY_ADDRESS = 10, ///< Code by an address for EXTCODE/SIZE.
EVM_BALANCE = 11, ///< Balance of a given address for BALANCE.
EVM_BLOCKHASH = 12, ///< Block hash of by block number for BLOCKHASH.
EVM_ACCOUNT_EXISTS = 13
EVM_ACCOUNT_EXISTS = 13, ///< Check if an account exists.
EVM_CALL_DEPTH = 14, ///< Current call depth.
};