You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version is key here, and the "0.12.2" version is incorrect, so as gas price values .
To Reproduce
let rpc_client = RpcClient::new("http://localhost:5050");
let mut block_with_txs = match rpc_client.starknet_rpc().get_block_with_txs(block_id).await.unwrap() {
MaybePendingBlockWithTxs::Block(block_with_txs) => block_with_txs,
MaybePendingBlockWithTxs::PendingBlock(_) => {
panic!("Block is still pending!");
}
};
println!({},block_with_txs);
Expected behavior
Provided starknet version and should match the actual one
Additional context
As provider I use katana cargo run --bin katana -- --fork-block-number 239226 --rpc-url https://starknet-sepolia.g.alchemy.com/starknet/version/rpc/v0_7/api-key
The text was updated successfully, but these errors were encountered:
When I fetch data from a block forked by Katana, I get the following status:
Notice the version here and the l1 data gas price.
However, when I directly make a request, via
I get the following response:
The version is key here, and the "0.12.2" version is incorrect, so as gas price values .
To Reproduce
Expected behavior
Provided starknet version and should match the actual one
Additional context
As provider I use katana
cargo run --bin katana -- --fork-block-number 239226 --rpc-url https://starknet-sepolia.g.alchemy.com/starknet/version/rpc/v0_7/api-key
The text was updated successfully, but these errors were encountered: