Skip to content

Commit

Permalink
chore(rpc): make that 1000000
Browse files Browse the repository at this point in the history
  • Loading branch information
matthias-wright committed Oct 16, 2023
1 parent 9c24812 commit 9948247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/rpc/src/eth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ pub async fn eth_estimate_gas<C: Collection>(
) -> Result<U256> {
trace!(target: "rpc::eth", ?request, "Serving
eth_estimateGas");
Ok(U256::from(10000))
Ok(U256::from(1000000))
}

/// Handler for: `eth_gasPrice`
Expand Down

0 comments on commit 9948247

Please sign in to comment.