Skip to content

Commit

Permalink
fix: page offset error
Browse files Browse the repository at this point in the history
  • Loading branch information
fubuloubu committed May 31, 2023
1 parent 2a9786e commit 429b403
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ape_ledger/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def get_user_selected_account(self) -> Tuple[str, HDAccountPath]:

address = self._get_user_selection()

account_id = self._choice_index
account_id = self._choice_index + self._index_offset
return address, self._hd_root_path.get_account_path(account_id)

def _get_user_selection(self) -> str:
Expand Down

0 comments on commit 429b403

Please sign in to comment.