Skip to content

Commit 9b7b975

Browse files
committed
disable bailout in EVM::create
1 parent c9e32d1 commit 9b7b975

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

silkworm/core/execution/evm.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ evmc::Result EVM::create(const evmc_message& message) noexcept {
106106

107107
auto value{intx::be::load<intx::uint256>(message.value)};
108108
const auto owned_funds = state_.get_balance(message.sender);
109-
if (!bailout && owned_funds < value) {
109+
if (owned_funds < value) {
110110
res.status_code = EVMC_INSUFFICIENT_BALANCE;
111111

112112
for (auto tracer : tracers_) {

0 commit comments

Comments
 (0)