Browse Source

Document locktime temporary disable

master
meriadec 7 years ago
parent
commit
fc463da721
No known key found for this signature in database GPG Key ID: 1D2FC2305E2CB399
  1. 7
      src/commands/libcoreSignAndBroadcast.js

7
src/commands/libcoreSignAndBroadcast.js

@ -121,9 +121,14 @@ async function signTransaction({
const changePath = output ? output.getDerivationPath().toString() : undefined
const outputScriptHex = Buffer.from(transaction.serializeOutputs()).toString('hex')
const lockTime = undefined // TODO: transaction.getLockTime()
const initialTimestamp = hasTimestamp ? transaction.getTimestamp() : undefined
// FIXME
// should be `transaction.getLockTime()` as soon as lock time is
// handled by libcore (actually: it always returns a default value
// and that caused issue with zcash (see #904))
const lockTime = undefined
const signedTransaction = await hwApp.createPaymentTransactionNew(
inputs,
associatedKeysets,

Loading…
Cancel
Save