Files
gaze-indexer/pkg/btcutils/transaction.go
2024-06-14 16:30:52 +07:00

11 lines
259 B
Go

package btcutils
const (
// TxVersion is the current latest supported transaction version.
TxVersion = 2
// MaxTxInSequenceNum is the maximum sequence number the sequence field
// of a transaction input can be.
MaxTxInSequenceNum uint32 = 0xffffffff
)