Skip to content

Commit

Permalink
Merge pull request #343 from eosnetworkfoundation/yarkin/pull_enable_…
Browse files Browse the repository at this point in the history
…gas_price

[1.0->main] Pull fixes to enable eth_gasPrice
  • Loading branch information
yarkinwho authored Jan 10, 2025
2 parents 270dfc2 + 7ce58a3 commit 629e115
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ include(cmake/conan.cmake)

set(VERSION_MAJOR 1)
set(VERSION_MINOR 0)
set(VERSION_PATCH 3)
set(VERSION_PATCH 4)
#set(VERSION_SUFFIX rc4)

if(VERSION_SUFFIX)
Expand Down
2 changes: 1 addition & 1 deletion external/silkworm
2 changes: 1 addition & 1 deletion peripherals/proxy/eth-jsonrpc-access.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ if empty(method) or empty(version) then
return
end
if write_calls ~= nil then
if contains(write_calls, v['method']) then
if contains(write_calls, v['method']) and v['method'] ~= 'eth_gasPrice' then
ngx.log(ngx.ERR, 'batch write calls not allowed')
ngx.exit(ngx.HTTP_BAD_REQUEST)
return
Expand Down

0 comments on commit 629e115

Please sign in to comment.