Upgrade to EVMC 7.5.0

One important change: MockedAccount.storage is a map and not unordered_map
This commit is contained in:
Alex Beregszaszi
2021-04-21 21:05:40 +01:00
parent 83213e659d
commit f1aaae36ee
8 changed files with 93 additions and 80 deletions
+6 -3
View File
@@ -28,7 +28,7 @@
#include <stddef.h> /* Definition of size_t. */
#include <stdint.h> /* Definition of int64_t, uint64_t. */
#if __cplusplus
#ifdef __cplusplus
extern "C" {
#endif
@@ -295,6 +295,9 @@ enum evmc_status_code
*/
EVMC_WASM_TRAP = 16,
/** The caller does not have enough funds for value transfer. */
EVMC_INSUFFICIENT_BALANCE = 17,
/** EVM implementation generic internal error. */
EVMC_INTERNAL_ERROR = -1,
@@ -914,7 +917,7 @@ struct evmc_vm
/* END Python CFFI declarations */
#if EVMC_DOCUMENTATION
#ifdef EVMC_DOCUMENTATION
/**
* Example of a function creating an instance of an example EVM implementation.
*
@@ -933,7 +936,7 @@ struct evmc_vm
struct evmc_vm* evmc_create_example_vm(void);
#endif
#if __cplusplus
#ifdef __cplusplus
}
#endif