-
Notifications
You must be signed in to change notification settings - Fork 12
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
Touch amendment #294
base: dev
Are you sure you want to change the base?
Touch amendment #294
Conversation
Because the new field This occurs here. I dont believe we need do anything I just wanted to notate it.
|
For Reviewers: When a trustline is frozen it updates the This was one of the only locations where the number of affected nodes is tested. This change does mean that every TSH will get a TouchCount update which may add txns to their account_tx stream which they may or may not understand. |
I think this is basically ready |
touchAccount( | ||
ApplyView& view, | ||
AccountID const& id, | ||
std::optional<std::shared_ptr<SLE>> sle) |
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.
What is the intent of this argument that is not actually used?
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.
@RichardAH I removed this. Can you re-review? Was this done so that later you could call it from another location and include the sle? Can we just remove that and add it later if we need to?
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.
It was forward thinking for other touches where the SLE is already provided by the calling function.
Speaking of which, I just did a quick code review and don't we need touch in a few other places not just unfunded offers?
77b8c83
to
532a471
Compare
An amendment to ensure that all accounts that are affected or could be affected by a txn appear in the txn metadata, akin to the touch command in *nix systems.
WIP
#288
High Level Overview of Change
Context of Change
Type of Change
.gitignore
, formatting, dropping support for older tooling)API Impact
libxrpl
change (any change that may affectlibxrpl
or dependents oflibxrpl
)