Update for btcjson sequence number type change.
This commit is contained in:
parent
ca0e38e58b
commit
f0cc672d23
1 changed files with 1 additions and 1 deletions
|
@ -1034,7 +1034,7 @@ func createTxRawResult(net btcwire.BitcoinNet, txSha string, mtx *btcwire.MsgTx,
|
|||
vinList[i].ScriptSig.Asm = disbuf
|
||||
vinList[i].ScriptSig.Hex = hex.EncodeToString(v.SignatureScript)
|
||||
}
|
||||
vinList[i].Sequence = float64(v.Sequence)
|
||||
vinList[i].Sequence = uint32(v.Sequence)
|
||||
}
|
||||
|
||||
voutList := make([]btcjson.Vout, len(mtx.TxOut))
|
||||
|
|
Loading…
Reference in a new issue