We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b1df4e commit a86c6b9Copy full SHA for a86c6b9
test/functional/test_framework/wallet_controller_common.py
@@ -72,7 +72,7 @@ async def submit_transaction_return_id(self, transaction: str, do_not_store: boo
72
assert match is not None
73
return match.group(1)
74
75
- async def get_coins_balance(self, with_locked: str = "unlocked"):
+ async def get_coins_balance(self, with_locked: str = "unlocked") -> Decimal:
76
balance_response = await self.get_balance(with_locked=with_locked)
77
match = re.search(r'Coins amount: (\d+(\.\d+)?)', balance_response)
78
0 commit comments