Update tests for bdk-ffi v0.9.0

This commit is contained in:
thunderbiscuit 2022-09-22 11:02:41 -04:00
parent 96889b43a8
commit d539d8eaf8
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -38,8 +38,8 @@ class TestSimpleBip84Wallet(unittest.TestCase):
)
wallet.sync(blockchain, None)
balance = wallet.get_balance()
# print(f"Balance is {balance} sat")
assert balance > 0, "Balance is 0, send testnet coins to tb1qzg4mckdh50nwdm9hkzq06528rsu73hjxxzem3e"
# print(f"Balance is {balance.total} sat")
assert balance.total > 0, "Balance is 0, send testnet coins to tb1qzg4mckdh50nwdm9hkzq06528rsu73hjxxzem3e"
if __name__ == '__main__':