pub trait BitcoinNetwork: Network {
    type WTx: WitnessTransaction + BitcoinTransaction;
}
Expand description

A trait for a Bitcoin network. Specifies that Witness Txns must use the same Input and Output format as Legacy transactions.

Required Associated Types

An associated witness transaction type.

Implementors