zeptin
zeptin
I am not entirely convinced this is all that needs to be done. We still need a test for histories containing staking transactions. There is also a residual issue; if...
Reopening this as a new PR with the latest master branch merged in. Original work by AndrewZvvv in #1486 Still needs to be reviewed in its entirety, particularly the estimation...
In [Networks.cs](https://github.com/stratisproject/StratisBitcoinFullNode/blob/master/src/NBitcoin/Networks.cs#L232-L234) the following constants are defined for segwit activation and timeout via BIP9: ``` network.consensus.BIP9Deployments[BIP9Deployments.TestDummy] = new BIP9DeploymentsParameters(28, 0, 999999999); network.consensus.BIP9Deployments[BIP9Deployments.CSV] = new BIP9DeploymentsParameters(0, 0, 999999999); network.consensus.BIP9Deployments[BIP9Deployments.Segwit] = new...
In the constructor of `NetworkPeerConnectionParameters`: ``` public NetworkPeerConnectionParameters() { this.Version = ProtocolVersion.PROTOCOL_VERSION; ... this.PreferredTransactionOptions = TransactionOptions.All; ``` This seems to mean that, regardless of the protocol version defined in `Program.cs`...
Not ready for review yet
Consists of two parts: a. Alter the reward distribution epoch to be the time (i.e. blocks) between two prior distributions rather than a fixed window. This removes the fixed number...
Adds the additional constraint that a multisig federation node must be actively participating in the InterFlux confirmation process in order to receive a portion of the fees thereof. This is...