We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9e32d1 commit 9b7b975Copy full SHA for 9b7b975
silkworm/core/execution/evm.cpp
@@ -106,7 +106,7 @@ evmc::Result EVM::create(const evmc_message& message) noexcept {
106
107
auto value{intx::be::load<intx::uint256>(message.value)};
108
const auto owned_funds = state_.get_balance(message.sender);
109
- if (!bailout && owned_funds < value) {
+ if (owned_funds < value) {
110
res.status_code = EVMC_INSUFFICIENT_BALANCE;
111
112
for (auto tracer : tracers_) {
0 commit comments