forked from LBRYCommunity/lbry-sdk
Merge branch 'abandonclaimfix' into development
This commit is contained in:
commit
7b653b90a8
1 changed files with 1 additions and 1 deletions
|
@ -1067,7 +1067,7 @@ class LBRYumWallet(LBRYWallet):
|
||||||
decoded_tx['vout'] = []
|
decoded_tx['vout'] = []
|
||||||
for output in tx.outputs():
|
for output in tx.outputs():
|
||||||
out = {}
|
out = {}
|
||||||
out['value'] = output[2]
|
out['value'] = Decimal(output[2]) / Decimal(COIN)
|
||||||
decoded_tx['vout'].append(out)
|
decoded_tx['vout'].append(out)
|
||||||
return decoded_tx
|
return decoded_tx
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue