-
Notifications
You must be signed in to change notification settings - Fork 71
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
remove unused programs #60
Conversation
token-lending/cli/Cargo.toml
Outdated
spl-token-lending = { path="../program", features = [ "no-entrypoint" ] } | ||
spl-token = { path="../../token/program", features = [ "no-entrypoint" ] } | ||
spl-token = "=3.2.0" |
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.
?
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.
deleted the token program from the repo
pinned spl-token to v3.2.0
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.
y not 3.3 i mean and why remove feature
token-lending/program/Cargo.toml
Outdated
spl-token = { path = "../../token/program", features = [ "no-entrypoint" ] } | ||
switchboard-program = "0.1.45" | ||
solana-program = "=1.7.12" | ||
spl-token = { version = "3.1.0", features=["no-entrypoint"] } |
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.
3.3.0 ?
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.
um yea sure can do ig
was messing around with the spl-token version to figure out what was the breaking change
a5ecfba
to
d12eb2c
Compare
d12eb2c
to
a5ecfba
Compare
a5ecfba
to
710031d
Compare
@@ -26,7 +26,7 @@ async fn test_success() { | |||
); | |||
|
|||
// limit to track compute unit increase | |||
test.set_bpf_compute_max_units(3_000); | |||
test.set_bpf_compute_max_units(4_000); |
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.
lol why did this need to change?
solana version update slightly different compute calculations i guess.
…On Tue, Feb 1, 2022, 4:03 PM Da Sichuan ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In token-lending/program/tests/set_lending_market_owner.rs
<#60 (comment)>
:
> @@ -26,7 +26,7 @@ async fn test_success() {
);
// limit to track compute unit increase
- test.set_bpf_compute_max_units(3_000);
+ test.set_bpf_compute_max_units(4_000);
lol why did this need to change?
—
Reply to this email directly, view it on GitHub
<#60 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AT5EXXT4Q4QU7QUBH6VBRP3UZBYEFANCNFSM5MSMLVQA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you commented.Message ID:
***@***.***
com>
|
This seems fine to me. Removing unused programs and pinning dependencies. I guess the |
* fix ci solana version (#67) * Update switchboard-program to v0.2.0 (#66) * oracleless repay (#64) * oracleless repay * lint * the easy way * updated test to make sure interest accumulates before repay * remove unused programs (#60) * remove unused programs * slight consisency changes Co-authored-by: ra <RealAwesomeness@users.noreply.github.com> Co-authored-by: Nope X <nope@solend.fi> * Oracleless ctoken mint and redeem (#69) * no need to refresh on mint/redeem * test fixes * added more robust tests to make sure interest accrues, added oracleless deposit_obligation_collateral, updated instruction.rs for writable account * comment change Co-authored-by: 0xkiplet <98113383+0xkiplet@users.noreply.github.com> Co-authored-by: ra <40503841+RealAwesomeness@users.noreply.github.com> Co-authored-by: ra <RealAwesomeness@users.noreply.github.com>
No description provided.