Skip to content

Commit

Permalink
dogechain public rpc adaptation
Browse files Browse the repository at this point in the history
  • Loading branch information
0xcb9ff9 committed Jun 5, 2023
1 parent 1fb5684 commit bace507
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chain/ethereum/src/ethereum_adapter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ pub struct EthereumAdapter {
lazy_static! {
pub static ref ETH_CALL_GAS: u32 = std::env::var("GRAPH_ETH_CALL_GAS")
.map(|s| s.parse::<u32>().expect("invalid GRAPH_ETH_CALL_GAS env var"))
.unwrap_or(50_000_000);
.unwrap_or(30_000_000);
}

impl CheapClone for EthereumAdapter {
Expand Down
2 changes: 1 addition & 1 deletion node/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -635,7 +635,7 @@ impl Web3Provider {
}

const PROVIDER_FEATURES: [&str; 3] = ["traces", "archive", "no_eip1898"];
const DEFAULT_PROVIDER_FEATURES: [&str; 2] = ["traces", "archive"];
const DEFAULT_PROVIDER_FEATURES: [&str; 2] = ["archive", "no_eip1898"];

impl Provider {
fn validate(&mut self) -> Result<()> {
Expand Down

0 comments on commit bace507

Please sign in to comment.