Skip to content

Commit a86c6b9

Browse files
committed
Apply review comment
1 parent 7b1df4e commit a86c6b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/functional/test_framework/wallet_controller_common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def submit_transaction_return_id(self, transaction: str, do_not_store: boo
7272
assert match is not None
7373
return match.group(1)
7474

75-
async def get_coins_balance(self, with_locked: str = "unlocked"):
75+
async def get_coins_balance(self, with_locked: str = "unlocked") -> Decimal:
7676
balance_response = await self.get_balance(with_locked=with_locked)
7777
match = re.search(r'Coins amount: (\d+(\.\d+)?)', balance_response)
7878
assert match is not None

0 commit comments

Comments
 (0)