Browse Source
Merge pull request #7685 from coval3nte/fix/get_balance
docs-compliant get_balance method
patch-4
ThomasV
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
electrum/interface.py
|
|
@ -1020,7 +1020,7 @@ class Interface(Logger): |
|
|
|
assert_dict_contains_field(res, field_name='confirmed') |
|
|
|
assert_dict_contains_field(res, field_name='unconfirmed') |
|
|
|
assert_non_negative_integer(res['confirmed']) |
|
|
|
assert_non_negative_integer(res['unconfirmed']) |
|
|
|
assert_integer(res['unconfirmed']) |
|
|
|
return res |
|
|
|
|
|
|
|
async def get_txid_from_txpos(self, tx_height: int, tx_pos: int, merkle: bool): |
|
|
|