Skip to content

Commit

Permalink
Showing 4 changed files with 12 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.21](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.20...v0.0.1-alpha.21) (2024-09-26)


### Bug Fixes

* disable blacklist for alpha program ([26bcbbb](https://github.com/DIG-Network/dig-incentive-server/commit/26bcbbbafc3f631b85c55922873c4d2b79cbe314))

### [0.0.1-alpha.20](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.19...v0.0.1-alpha.20) (2024-09-26)


4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-incentive-server",
"version": "0.0.1-alpha.20",
"version": "0.0.1-alpha.21",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
3 changes: 2 additions & 1 deletion src/tasks/payouts.ts
Original file line number Diff line number Diff line change
@@ -161,7 +161,8 @@ const runIncentiveProgram = async (
console.log(`Peer ${peerIp} passed all challenges and is valid.`);
} else {
console.log(`Peer ${peerIp} failed one or more challenges.`);
await program.addToBlacklist(peerIp);
// Disabling blacklist for alpha program
// await program.addToBlacklist(peerIp);
}
} else {
console.log(`Peer ${peerIp} has an incorrect generation hash.`);

0 comments on commit 6eb31e1

Please sign in to comment.