-
Notifications
You must be signed in to change notification settings - Fork 9
fix: Checkout Diff check fixes #340
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
Conversation
backend/domain_types/src/types.rs
Outdated
| l2_l3_data: None, | ||
| authorized_amount: None, |
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.
in types.rs this fields are marked as none in all the places then why we are adding this fields ?
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.
removed
backend/domain_types/src/types.rs
Outdated
| .map(|descriptor| BillingDescriptor { | ||
| name: descriptor.name.clone(), | ||
| city: descriptor.city.clone(), | ||
| phone: descriptor.phone.clone(), | ||
| statement_descriptor: descriptor | ||
| .statement_descriptor | ||
| .clone() | ||
| .or_else(|| value.statement_descriptor_name.clone()), | ||
| statement_descriptor_suffix: descriptor | ||
| .statement_descriptor_suffix | ||
| .clone() | ||
| .or_else(|| value.statement_descriptor_suffix.clone()), | ||
| reference: descriptor.reference.clone(), | ||
| }) |
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.
As this code is repetitive use a from conversion.
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.
Done
|
Add diff check results for all the flows |
| connector_tx_id | ||
| )) | ||
| } | ||
| impl< |
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.
Follow macro structure for RSync flow
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.
Done
ab5dbfd
Description
Diff check fixes for connector checkout for the following flows
Motivation and Context
Additional Changes
How did you test it?