Skip to content

Commit

Permalink
comment test differences
Browse files Browse the repository at this point in the history
  • Loading branch information
orkunkilic committed Sep 26, 2023
1 parent bba594b commit 6b599a3
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/demo-rollup/tests/evm/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ impl TestClient {
) -> Result<Bytes, Box<dyn std::error::Error>> {
let nonce = self.eth_get_transaction_count(self.from_addr).await;

// Any type of transaction can be used for eth_call
let req = TransactionRequest::new()
.from(self.from_addr)
.to(contract_address)
Expand All @@ -166,6 +167,7 @@ impl TestClient {
) -> Result<Bytes, Box<dyn std::error::Error>> {
let nonce = self.eth_get_transaction_count(self.from_addr).await;

// Any type of transaction can be used for eth_call
let req = Eip1559TransactionRequest::new()
.from(self.from_addr)
.to(contract_address)
Expand Down

0 comments on commit 6b599a3

Please sign in to comment.