Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rpc: Fix error wrapping chain in GetAccountLedgerSequence #136 #137

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion internal/services/rpc_service.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (r *rpcService) GetAccountLedgerSequence(address string) (int64, error) {
return 0, fmt.Errorf("getting ledger entry for account public key: %w", err)
}
if len(result.Entries) == 0 {
return 0, fmt.Errorf("entry not found for account public key")
return 0, fmt.Errorf("%w: entry not found for account public key", ErrAccountNotFound)
}
accountEntry, err := utils.GetAccountFromLedgerEntry(result.Entries[0])
if err != nil {
Expand Down