()
| 30 | } |
| 31 | |
| 32 | pub async fn increment_account_1_nonce() -> U256 { |
| 33 | let nonce = *ACCOUNT_1_NONCE.lock().await + U256::from(1); |
| 34 | *ACCOUNT_1_NONCE.lock().await = nonce; |
| 35 | nonce |
| 36 | } |
| 37 | |
| 38 | pub async fn deploy_contract(simple: bool) -> H256 { |
| 39 | let web3 = web3(); |
no outgoing calls
no test coverage detected