diff --git a/js/src/main.ts b/js/src/main.ts index 5fd4859..b4f2768 100644 --- a/js/src/main.ts +++ b/js/src/main.ts @@ -23,7 +23,7 @@ import bs58 from 'bs58'; * The vesting schedule program ID */ export const VESTING_PROGRAM_ID = new PublicKey( - 'AKUgi92CLv6ce4d6MNHZXeKUFU2SbnAzLc77JN63EGBA' + 'DLpY544CqTrchWSaWHv48DX8ZHkpQbrcYkB7UvHGHCsK' ); export const TOKEN_MINT = new PublicKey( diff --git a/program/src/processor.rs b/program/src/processor.rs index 6145667..5ff220e 100644 --- a/program/src/processor.rs +++ b/program/src/processor.rs @@ -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; } _ => { @@ -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(