-
Notifications
You must be signed in to change notification settings - Fork 84
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
Fix/linear pricing #1812
Merged
Merged
Fix/linear pricing #1812
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
3df5900
feat: restrict epoch closing to liquiduty admin
mustermeiszer e004106
fix: linear pricing
mustermeiszer 7b4ab74
proof: type unsafety
mustermeiszer 9ad611b
revert: type unsafety
mustermeiszer 9dc56e5
fix: tests and adapt logic to allow dyanmic input
mustermeiszer ca5ab9d
Merge branch 'main' into fix/linear-pricing
mustermeiszer c002271
chore: generic removal
mustermeiszer ec1a96b
chore: cleaner logic
mustermeiszer 2c2edc0
fix: Clippy you annoying thing
mustermeiszer db35635
fix: cliiiiiippyyyyy
mustermeiszer b1ef424
fix: cliippyy v1m
mustermeiszer b4854b1
feat: make PoolAdmin configurable
mustermeiszer 2aca1dd
fix: benchmarks
mustermeiszer c978951
feat: make pricing linear optional
mustermeiszer e2dd3ca
Merge remote-tracking branch 'origin/main' into fix/linear-pricing
mustermeiszer 9265bbb
Fix: linear accrual not overpassing maturity (#1842)
lemunozm 967584d
increment coverage when loan is at maturity date
lemunozm 2a691e9
fix division_by_zero issue
lemunozm 45be927
feat: fix linear pricing migration (#1838)
wischli 8c01edc
Merge remote-tracking branch 'origin/main' into fix/linear-pricing
mustermeiszer 3001d9d
fix: make mock accept all origins
mustermeiszer b831f99
feat: add test for switching between oracle or settlement price
mustermeiszer 5fee771
fix: not needed where clause
mustermeiszer fcddabf
feat: move additional test
mustermeiszer b6976c8
fix: nits
mustermeiszer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Nice! I didn't know about
EnsureOriginWithArg
. Probably, I should have used it inoracle-collection
instead ofPreConditions
there.