Merge pull request #4133 from laseryuan/patch-1

Fix the error: locktime is always reset to zero when serialize the js…
This commit is contained in:
ThomasV 2018-03-22 12:25:58 +01:00 committed by GitHub
commit bf67920f7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -201,7 +201,7 @@ class Commands:
keypairs = {}
inputs = jsontx.get('inputs')
outputs = jsontx.get('outputs')
locktime = jsontx.get('locktime', 0)
locktime = jsontx.get('lockTime', 0)
for txin in inputs:
if txin.get('output'):
prevout_hash, prevout_n = txin['output'].split(':')