Closed gz-c closed 6 years ago
If Tx is empty, RawTx should not be empty If RawTx is empty, Tx should not be empty
RawTx is not empty when txindex=1 in btcd settings.
txindex=1
Do not compare len(Tx) != len(RawTx), check len(RawTx) != 0 to confirm txindex=1 is set
len(Tx) != len(RawTx)
len(RawTx) != 0
If Tx is empty, RawTx should not be empty If RawTx is empty, Tx should not be empty
RawTx is not empty when
txindex=1
in btcd settings.Do not compare
len(Tx) != len(RawTx)
, checklen(RawTx) != 0
to confirmtxindex=1
is set