Skip to content

Commit

Permalink
feat: changing token and lowered time deltas
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Oct 7, 2024
1 parent 6c0fd6d commit fd60976
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions program/src/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ use crate::{
};

pub const TOKEN_MINT: Pubkey =
solana_program::pubkey!("AxfBPA1yi6my7VAjqB9fqr1AgYczuuJy8tePnNUDDPpW");
solana_program::pubkey!("FGG8y8JrZrAinbBwWAB2EacQgZVyzoerdMsU1LUaRkKv");

pub struct Processor {}

Expand Down Expand Up @@ -199,7 +199,7 @@ impl Processor {
0 => {
release_time = 0;
}
7_776_000 | 15_552_000 | 23_328_000 | 31_104_000 => {
1800 | 3600 | 5400 | 7200 => {
release_time = clock.unix_timestamp as u64 + schedule.time_delta;
}
_ => {
Expand Down Expand Up @@ -435,7 +435,7 @@ impl Processor {
}

// Withdrawal period is 7 days = 7 * 86400 = 604_800
schedule.release_time = clock.unix_timestamp as u64 + 604_800;
schedule.release_time = clock.unix_timestamp as u64 + 1800;

// Pack the updated schedule back into the account data
pack_schedule_into_slice(
Expand Down

0 comments on commit fd60976

Please sign in to comment.