From 9c2ef341a7c55c688a828944ab370c69cf056d1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Mon, 26 Sep 2016 16:28:12 +0200 Subject: [PATCH] EVM-C: add call depth query --- include/evm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/evm.h b/include/evm.h index 0b9d7de..d3d9880 100644 --- a/include/evm.h +++ b/include/evm.h @@ -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. };