Skip to content

Commit

Permalink
name call request gas limit (#844)
Browse files Browse the repository at this point in the history
* name call request gas limit

* fix pending block

* fix next tag
  • Loading branch information
Eikix authored Mar 11, 2024
1 parent 36fb575 commit 89c4936
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.sepolia.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ services:
- starknet-explorer:/var/lib/postgresql/data/

kakarot-rpc:
image: ghcr.io/kkrt-labs/kakarot-rpc/node:v0.2.4
image: ghcr.io/kkrt-labs/kakarot-rpc/node:v0.3.1
ports:
- 3030:3030
environment:
Expand Down
2 changes: 1 addition & 1 deletion src/eth_provider/provider.rs
Original file line number Diff line number Diff line change
Expand Up @@ -728,7 +728,7 @@ where
let eth_block_id = EthBlockId::new(id);
Ok(eth_block_id.try_into()?)
}
None => Ok(starknet::core::types::BlockId::Tag(starknet::core::types::BlockTag::Latest)),
None => Ok(starknet::core::types::BlockId::Tag(starknet::core::types::BlockTag::Pending)),
}
}

Expand Down

0 comments on commit 89c4936

Please sign in to comment.