Skip to content

Commit

Permalink
Merge pull request #226 from eosnetworkfoundation/yarkin/fix_call_eth…
Browse files Browse the repository at this point in the history
…_to_main

[1.0->main] call_eth no longer need the set the max_fee_per_gas
  • Loading branch information
yarkinwho authored Nov 18, 2024
2 parents 12c1d30 + b447d15 commit c87ecea
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ if(NOT SILKWORM_HAS_PARENT)
endif()

project(silkworm)
set(PROJECT_VERSION 1.0.7)
set(PROJECT_VERSION 1.0.8)

# conan must be initiailzed after project definition to properly detect target architecture.
if(NOT SILKWORM_HAS_PARENT)
Expand Down
5 changes: 0 additions & 5 deletions silkworm/silkrpc/commands/eth_api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1148,11 +1148,6 @@ awaitable<void> EthereumRpcApi::handle_eth_call(const nlohmann::json& request, s
silkworm::Transaction txn{call.to_transaction()};
if(!txn.from.has_value()) txn.from = evmc::address{0};

auto base_fee_per_gas = block_with_hash->block.header.base_fee_per_gas.value_or(0);
if(txn.max_fee_per_gas == 0 && base_fee_per_gas > 0) {
txn.max_fee_per_gas = base_fee_per_gas;
}

const auto [eos_evm_version, gas_params] = co_await load_gas_parameters(tx_database, chain_config_ptr, block_with_hash->block);

const core::rawdb::DatabaseReader& db_reader =
Expand Down

0 comments on commit c87ecea

Please sign in to comment.