-
Notifications
You must be signed in to change notification settings - Fork 101
financial functions #427
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
base: main
Are you sure you want to change the base?
financial functions #427
Conversation
|
Hi @BrianHung , it is really difficult to review such a large PR. I will try to:
|
|
Will prioritize this over the weekend. |
|
Hi @BrianHung , I have successfully rebased this branch and started writing the smoke tests as above. if let Some(err) = validate_arg_count_or_return(arg_count, 5, 6, cell) {
return err;
}
let params = match parse_required_params(args, &[0, 1, 2, 3, 4], self, cell, true) {
Ok(p) => p,
Err(err) => return err,
};If we ever decide to do that we should do it system wide.
The only huge downside of this approach is that your name won't be in the committers history. |
|
See #518 |
|
@nhatcher No worries; much rather have the functions exist and working than accreditation. LMK how I can help once you've figured out the plan of attack 😎 |
|
Initially, when writing the implementations I did have them as separate PRs but then realized it might've been good to group them to avoid duplication in helper functions; that was the context of my changes. |
You could use |
No description provided.