()
| 100 | |
| 101 | #[tokio::test] |
| 102 | async fn it_gets_a_balance() { |
| 103 | let account = *ACCOUNT_1; |
| 104 | let response = web3().get_balance(account).await; |
| 105 | assert!(response.is_ok()); |
| 106 | } |
| 107 | |
| 108 | #[tokio::test] |
| 109 | async fn it_gets_a_balance_by_block() { |
nothing calls this directly
no test coverage detected