This commit is contained in:
Steven Ettinger 2023-03-09 12:36:53 -03:00 committed by GitHub
parent f7043cd891
commit b2611a168e
Signed by untrusted user: github
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -113,6 +113,7 @@ exports.shares_claim = (json, from, active, pc) => {
}
exports.drop_claim = (json, from, active, pc) => {
if (json.block_num < 72892025){
let tbp = getPathNum(['balances', from]),
rd = getPathNum(['balances', 'rd']),
totp = getPathNum(['stats', 'tokenSupply']),
@ -199,6 +200,9 @@ exports.drop_claim = (json, from, active, pc) => {
}
})
.catch(e => { console.log(e); });
} else {
pc[0](pc[2])
}
}
/*
@ -217,4 +221,4 @@ const half = parseInt(claim / 2),
if (process.env.npm_lifecycle_event == 'test') pc[2] = ops
store.batch(ops, pc);
*/
*/