diff --git a/contracts/resourcemanager.js b/contracts/resourcemanager.js index e20b93c2..a983fdfa 100644 --- a/contracts/resourcemanager.js +++ b/contracts/resourcemanager.js @@ -249,7 +249,7 @@ actions.subscribe = async (payload) => { if (!api.assert(transferIsSuccessful(feeTransfer, 'transfer', api.sender, 'null', burnParams.burnSymbol, burnParams.allowlistBurnFee), 'not enough tokens for allowList fee')) return; const date = new Date(`${api.hiveBlockTimestamp}.000Z`); - date.setDate(date.getDate() + 30); + date.setUTCDate(date.getUTCDate() + 30); if (!accountControl) accountControl = { account: sender, isDenied: false, isAllowed: true };