-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add activation height for multisig fee sorting #1092
Conversation
@@ -185,7 +185,8 @@ public CirrusMain() | |||
GetMiningTimestampV2ActivationHeight = 3_709_000, // Monday 14 February 00:00:00 (Estimated) | |||
GetMiningTimestampV2ActivationStrictHeight = 3_783_000, // Monday 28 February 07:00:00 (London Time) (Estimated) | |||
ContractSerializerV2ActivationHeight = 3_386_335, // Monday 13 December 16:00:00 (Estimated) | |||
Release1300ActivationHeight = 4_334_400 | |||
Release1300ActivationHeight = 4_334_400, | |||
Release1400ActivationHeight = 0, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I will set this once merged.
Here is the CI for this https://dev.azure.com/StratisProject/StratisFullNode/_build/results?buildId=38412&view=results |
CI is failing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. Merge once CI passes. We can hard code the other activation heights now too - i.e. drop the BIP 9 setups. Also, perhaps we can use a dictionary (or array) for hard-coded activation heights instead of adding a variables each time - e.g. ActivationHeight["Release1400"]
and ActivationHeight["ContractSerializerV2"]
OR ActivationHeight[Release1400]
and ActivationHeight[ContractSerializerV2]
, where the indexes are defined constants. Just a thought.
@quantumagi I've ran all the failed tests locally and they pass bar the |
Can you please do a PR where we remove the second BIP 9? |
…ms-fees-ort Add activation height for multisig fee sorting
No description provided.