mirror of
https://git.wownero.com/lza_menace/wownero-python.git
synced 2024-08-15 03:25:25 +00:00
Fix bug in destinations amounts
This commit is contained in:
parent
24856cfafd
commit
d81b29182f
10 changed files with 82 additions and 21 deletions
|
@ -247,7 +247,7 @@ class JSONRPCWallet(object):
|
|||
}
|
||||
if 'destinations' in data:
|
||||
result['destinations'] = [
|
||||
(address(x['address']), from_atomic(data['amount']))
|
||||
(address(x['address']), from_atomic(x['amount']))
|
||||
for x in data.get('destinations')
|
||||
]
|
||||
return result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue