You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After refreshing neof-tescases submodule, refreshing requirements.txt (#98) and installing missed lib (ecdsa, in #98 as well)
There is another moment. All tests are red because of:
definit_wallet(wallet_path: str, wallet_password: str) ->str:
""" Create new wallet and new account. Args: wallet_path: The path to the wallet to save wallet. wallet_password: The password for new wallet. """wallet=neo3_wallet.Wallet()
account=neo3_account.Account.create_new(wallet_password)
wallet.account_add(account)
withopen(wallet_path, "w") asout:
>json.dump(wallet.to_json(wallet_password), out)
ETypeError: Wallet.to_json() takes1positionalargumentbut2weregiven
to_json() is found twice, and both times in submodule neofs-testcases. Removing passed password solves issue, but how in works inside neofs-testcases then?
After refreshing neof-tescases submodule, refreshing requirements.txt (#98) and installing missed lib (ecdsa, in #98 as well)
There is another moment. All tests are red because of:
to_json()is found twice, and both times in submodule neofs-testcases. Removing passed password solves issue, but how in works inside neofs-testcases then?I consider that there is some hidden magic
Steps to Reproduce