Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancoGiachetta committed Aug 20, 2024
1 parent c944fcc commit 9359fc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion rpc-state-reader/src/blockifier_state_reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ pub fn execute_tx(
(
// TODO Change charge_fee: true
blockifier_tx
.execute(&mut state, &block_context, false, true)
.execute(&mut state, &block_context, true, true)
.unwrap(),
trace,
receipt,
Expand Down
4 changes: 2 additions & 2 deletions rpc-state-reader/src/rpc_state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ impl From<RpcChain> for ChainId {
fn from(value: RpcChain) -> Self {
match value {
RpcChain::MainNet => ChainId::Mainnet,
RpcChain::TestNet => ChainId::IntegrationSepolia,
RpcChain::TestNet2 => ChainId::Sepolia
RpcChain::TestNet => ChainId::Sepolia,
RpcChain::TestNet2 => ChainId::IntegrationSepolia,
}
}
}
Expand Down

0 comments on commit 9359fc7

Please sign in to comment.