Skip to content

Commit

Permalink
Add Berlin HF
Browse files Browse the repository at this point in the history
  • Loading branch information
axic committed Aug 20, 2019
1 parent 10f038b commit 0ddd764
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion include/evmc/evmc.h
Original file line number Diff line number Diff line change
Expand Up @@ -762,6 +762,7 @@ enum evmc_revision
* The Petersburg revision.
*
* Other names: Constantinople2, ConstantinopleFix.
*
* https://eips.ethereum.org/EIPS/eip-1716
*/
EVMC_PETERSBURG = 6,
Expand All @@ -773,8 +774,15 @@ enum evmc_revision
*/
EVMC_ISTANBUL = 7,

/**
* The Berlin revision.
*
* The spec draft: https://eips.ethereum.org/EIPS/eip-2070.
*/
EVMC_BERLIN = 8,

/** The maximum EVM revision supported. */
EVMC_MAX_REVISION = EVMC_ISTANBUL,
EVMC_MAX_REVISION = EVMC_BERLIN,


/**
Expand Down

0 comments on commit 0ddd764

Please sign in to comment.