Skip to content

Commit

Permalink
fix: rollback to long time deltas
Browse files Browse the repository at this point in the history
  • Loading branch information
wei3erHase committed Oct 7, 2024
1 parent f0cfcc7 commit f6584d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions program/src/processor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ impl Processor {
0 => {
release_time = 0;
}
1800 | 3600 | 5400 | 7200 => {
7_776_000 | 15_552_000 | 23_328_000 | 31_104_000 => {
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 + 1800;
schedule.release_time = clock.unix_timestamp as u64 + 604_800;

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

0 comments on commit f6584d6

Please sign in to comment.