Skip to content

Commit 63ed32c

Browse files
authored
fix(monero-harness): add missing ? operator in address_at (#848)
1 parent ac37576 commit 63ed32c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monero-harness/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ impl MoneroWallet {
467467

468468
/// Get address at a given account and subaddress index.
469469
pub async fn address_at(&self, account_index: u32, address_index: u32) -> Result<Address> {
470-
Ok(self.wallet.address(account_index, address_index).await)
470+
Ok(self.wallet.address(account_index, address_index).await?)
471471
}
472472

473473
pub async fn balance(&self) -> Result<u64> {

0 commit comments

Comments
 (0)