You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library produces invalid OTS proofs when the chanpoint refers to a segwit transaction.
This is due to the verify function that gets different results wether the rawTx data came from liteVerify or nodeVerify: a nodeVerfy may return a raw segwit transaction that is different than the insight explorer one, so the OpenTimestamps verifier says that it is an invalid OTS proof.
The converter take the tx hex directly from the node, one option is to launch the bitcoin node with the flag -rpcserialversion this way all hex returned are witnessless.
The other option is to parse the transaction from the converter and serialize it without the witness, which require some sort of bitcoin lib (the opentimestamp-server works in this way)
The library produces invalid OTS proofs when the chanpoint refers to a segwit transaction.
This is due to the verify function that gets different results wether the
rawTx
data came fromliteVerify
ornodeVerify
: anodeVerfy
may return a raw segwit transaction that is different than the insight explorer one, so the OpenTimestamps verifier says that it is an invalid OTS proof.Here is the chainpoint:
Corresponding segwit raw tx:
Corresponding Insight / Witnessless tx:
The text was updated successfully, but these errors were encountered: