-
Notifications
You must be signed in to change notification settings - Fork 715
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
[GUI] Deterministic Masternode #2804
base: master
Are you sure you want to change the base?
Conversation
Decoupling the RPC server errors from the function.
And use the `PROTOCOL_VERSION` instead of the `CLIENT_VERSION`. Which should had never been used there as the serialization of inputs/spend_notes cannot be modified changing the `CLIENT_VERSION`, it's a hard-fork that needs a protocol bump.
Same validation is performed inside TryATMP.
…the network. The transaction inputs are always from the wallet.
And remove duplicated available inputs validation. The code will perform the same check few lines after the signature inside ATMP.
Differentiating deterministic from legacy masternodes
…created locally). Only useful when the owner generates the operator key, so the object can be securely stored inside the wallet.dat encrypted. A future work could create an encryptable db for this specific object.
…qual to the previous type
… not general std::exception.
Seems to only happen on linux.
co-authored with random-zebra
4304c69
to
fd66231
Compare
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.
tACK:
checked the git diff which is consistent with the old PR;
two tests did not pass but it must be a github bug since they passed locally on my pc;
tested GUI which is working fine for creation / killing / unbanning a DMN.
Let's get this merged to move on with v6.0
Yesterday I pushed some fixes for the RPC naming as we discussed @Fuzzbawls but I decided to revert it because so many other PRs would need to fix the same we will push it in a subsequent PR after we start getting these merged. |
Fix lint Fix CMake Remove GetMNCollateralCandidate
Co-Authored with @panleone
This PR is superseding both PRs #2751 and #2791
It contains the following fixes/improvements we've found during testing:
Prior PR had remnants of #2755