-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Undo API changes introduced in XRPFees: #4429
Conversation
* Original changes: XRPLF@e4b17d1 * Resolves XRPLF#4425
I would prefer keeping the new fields and the old. We can then transition over to the new fields after it passes and deprecate the old fields. |
src/test/rpc/Subscribe_test.cpp
Outdated
@@ -412,24 +412,10 @@ class Subscribe_test : public beast::unit_test::suite | |||
return false; | |||
|
|||
bool xrpFees = env.closed()->rules().enabled(featureXRPFees); |
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.
This variable is no longer used.
It would also be nice to see these new fields added to |
I disagree. I don't think adding the new fields was a good idea in the first place. I honestly can't remember why I did it. The values should be able to be changed in place without any negative effects (AFAIK). |
* Review feedback from @ckniffen. Remove unused variable.
* upstream/develop: Fix Conan version constraint in workflows (XRPLF#4430) Refactor getTrustedForLedger() (XRPLF#4424) README: Update "Build from source" section (XRPLF#4426)
I thought they were changed to normalize all fees to drops. No worries though. |
@ximinez at your convenience, please confirm that this is ready to merge. You can put the |
* upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
* upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
* upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
* upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
* upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
…ctionality * upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
…tpage * upstream/develop: Undo API changes introduced in XRPFees: (XRPLF#4429) Remove recipe for RocksDB and add recipe for Snappy (XRPLF#4431)
* Original changes: XRPLF@e4b17d1 * Resolve XRPLF#4425
|
High Level Overview of Change
#4247 made some unnecessary breaking changes to the API for the validation subscription stream. This PR reverts those changes.
Type of Change