Skip to content

Commit

Permalink
[LW-11591] Decrease Catalyst voting power threshold from 500 to 25 ADA
Browse files Browse the repository at this point in the history
  • Loading branch information
michalrus committed Sep 27, 2024
1 parent 26dc634 commit ee93d7f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

- Un-brick auto-update on devices where it failed in the past ([PR 3223](https://github.com/input-output-hk/daedalus/pull/3223))

### Chores

- Decrease Catalyst voting power threshold from 500 to 25 ADA ([PR 3230](https://github.com/input-output-hk/daedalus/pull/3230))

## 6.0.1

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion source/renderer/app/config/votingConfig.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const { isDev } = global.environment;
export const VOTING_REGISTRATION_MIN_WALLET_FUNDS = 500; // 500 ADA | unit: ADA
export const VOTING_REGISTRATION_MIN_WALLET_FUNDS = 25; // 25 ADA | unit: ADA
export const VOTING_REGISTRATION_FEE_CALCULATION_AMOUNT = 1; // 1 ADA | unit: ADA
export const VOTING_REGISTRATION_PIN_CODE_LENGTH = 4;
export const VOTING_REGISTRATION_MIN_TRANSACTION_CONFIRMATIONS = isDev ? 2 : 10;
Expand Down

0 comments on commit ee93d7f

Please sign in to comment.