()
| 133 | use utils::crypto::keypair; |
| 134 | |
| 135 | async fn transaction() -> Transaction { |
| 136 | let nonce = increment_account_1_nonce().await; |
| 137 | Transaction::new( |
| 138 | *ACCOUNT_1, |
| 139 | Some(*ACCOUNT_2), |
| 140 | U256::from(10), |
| 141 | Some(nonce), |
| 142 | None, |
| 143 | ) |
| 144 | .unwrap() |
| 145 | } |
| 146 | |
| 147 | async fn function_call_transaction(contract_account: Account, data: Bytes) -> Transaction { |
| 148 | let nonce = increment_account_1_nonce().await; |
no test coverage detected