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
This confuses users because they can't use the "txid" as to look up a transaction in a mempool explorer. I think we should check our other uses of transaction hash and transaction ID.
I've created this PR in btcd to help make our code clearer: btcsuite/btcd#2055
The text was updated successfully, but these errors were encountered:
If we are to use string for txid then we should probably rename SQL field chain_txns.txid to tx_hash. This field is a blob and we currently set it to the tx hash.
In some instances we've confused the double hash of a transaction with the transaction ID (
txid
). I think this is one example:taproot-assets/rpcserver.go
Line 1383 in e6b0516
There may be others.
This confuses users because they can't use the "txid" as to look up a transaction in a mempool explorer. I think we should check our other uses of transaction hash and transaction ID.
I've created this PR in
btcd
to help make our code clearer: btcsuite/btcd#2055The text was updated successfully, but these errors were encountered: