We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Thanks for this project, is really helpful for communicate with Ledger using python :)
Instances of LedgerAccount with the same attributes are currently evaluated as different.
LedgerAccount
from ledgereth.accounts import LedgerAccount, get_account_by_path from ledgereth.comms import init_dongle dongle = init_dongle() account_one = get_account_by_path("44'/60'/0'/0/0", dongle) account_two = get_account_by_path("44'/60'/0'/0/0", dongle) account_one == account_two
Where account_one == account_two is evaluated as False.
account_one == account_two
False
I'd like to suggest that instances of LedgerAccount with same attributes were evaluated as equals.
safe-global/safe-cli#302
The text was updated successfully, but these errors were encountered:
moisses89
Successfully merging a pull request may close this issue.
Thanks for this project, is really helpful for communicate with Ledger using python :)
Issue Description
Instances of
LedgerAccount
with the same attributes are currently evaluated as different.Where
account_one == account_two
is evaluated asFalse
.Expected behavior
I'd like to suggest that instances of LedgerAccount with same attributes were evaluated as equals.
Related issue
safe-global/safe-cli#302
The text was updated successfully, but these errors were encountered: