Skip to content

Conversation

@segflaunt
Copy link

Summary

The address method in Wallet::address_at was missing the ? operator for error propagation, causing a type mismatch.

Before:

Ok(self.wallet.address(account_index, address_index).await)

After:

Ok(self.wallet.address(account_index, address_index).await?)

Testing

  • Code compiles successfully
  • monero-harness package builds without errors
  • Integration tests require Docker containers (not run locally)

Checklist

  • Code formatted with dprint
  • Clippy passes (for this package)
  • Builds successfully

🤖 Generated with Claude Code

The address() call returns Result but was not being unwrapped,
causing a type mismatch error.

Location: monero-harness/src/lib.rs:470
@binarybaron
Copy link

Thank you

@binarybaron binarybaron merged commit 63ed32c into eigenwallet:master Jan 3, 2026
50 of 59 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants