Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions evmc/include/evmc/helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ static inline const char* evmc_revision_to_string(enum evmc_revision rev)
case EVMC_HOMESTEAD:
return "Homestead";
case EVMC_TANGERINE_WHISTLE:
return "Tangerine Whistle";
return "TangerineWhistle";
case EVMC_SPURIOUS_DRAGON:
return "Spurious Dragon";
return "SpuriousDragon";
Comment on lines 231 to +234
case EVMC_BYZANTIUM:
return "Byzantium";
case EVMC_CONSTANTINOPLE:
Expand Down
4 changes: 2 additions & 2 deletions test/utils/utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ evmc_revision to_rev(std::string_view s)
return EVMC_FRONTIER;
if (s == "Homestead")
return EVMC_HOMESTEAD;
if (s == "Tangerine Whistle" || s == "EIP150")
if (s == "TangerineWhistle" || s == "EIP150")
return EVMC_TANGERINE_WHISTLE;
if (s == "Spurious Dragon" || s == "EIP158")
if (s == "SpuriousDragon" || s == "EIP158")
return EVMC_SPURIOUS_DRAGON;
if (s == "Byzantium")
return EVMC_BYZANTIUM;
Expand Down