Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion solana-programs/Anchor.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
anchor_version = "0.31.0"
anchor_version = "0.31.1"

[features]
resolution = true
Expand Down
1 change: 1 addition & 0 deletions solana-programs/programs/cron/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ solana-zk-sdk = { workspace = true }
tuktuk-program = { git = "https://github.com/helium/tuktuk.git", rev = "112afe5e80aff8199c3b779203b76b35d97c42d1" }
clockwork-cron = "2.0.19"
chrono = "0.4.39"

5 changes: 1 addition & 4 deletions tuktuk-sdk/src/tuktuk.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,6 @@ pub mod cron {

pub fn close_ix(
cron_job_key: Pubkey,
payer: Pubkey,
authority: Pubkey,
rent_refund: Pubkey,
user_crons_key: Pubkey,
Expand All @@ -202,8 +201,7 @@ pub mod cron {
program_id: cron::ID,
accounts: cron::client::accounts::CloseCronJobV0 {
rent_refund,
payer,
authority: payer,
authority,
user_cron_jobs: user_crons_key,
cron_job: cron_job_key,
cron_job_name_mapping: self::name_mapping_key(&authority, &name),
Expand Down Expand Up @@ -233,7 +231,6 @@ pub mod cron {

close_ix(
cron_job_key,
payer,
authority,
rent_refund,
user_crons_key,
Expand Down
Loading