diff options
| author | sneurlax <sneurlax@gmail.com> | 2024-10-20 21:03:09 -0500 |
|---|---|---|
| committer | sneurlax <sneurlax@gmail.com> | 2024-10-20 21:03:09 -0500 |
| commit | 1d6dc089be4208a6f1693aa3d602665cecdfff54 (patch) | |
| tree | 5fdd7ef58ef8b19348f906c18184e9c906779964 /impls/monero.rs/tests/integration_tests.rs | |
| parent | 06beb39b2e62c585b29fa5b435ee645dbfa1bca5 (diff) | |
WIP scanning example
once this is fixed it should show a live balance
Diffstat (limited to 'impls/monero.rs/tests/integration_tests.rs')
| -rw-r--r-- | impls/monero.rs/tests/integration_tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/impls/monero.rs/tests/integration_tests.rs b/impls/monero.rs/tests/integration_tests.rs index 6dea846..6ce7a30 100644 --- a/impls/monero.rs/tests/integration_tests.rs +++ b/impls/monero.rs/tests/integration_tests.rs @@ -504,7 +504,7 @@ fn test_get_balance_integration() { // Fetch the balance. println!("Fetching wallet balance..."); let start = Instant::now(); - let balance_result = wallet.get_balance(0); // Account index 0 + let balance_result = wallet.get_balance(0); // Account index 0. println!("Fetching balance took {:?}", start.elapsed()); assert!(balance_result.is_ok(), "Failed to fetch balance: {:?}", balance_result.err()); |
