Skip to content

Commit e15070a

Browse files
committed
fix(init): update master and PKP ledger minimum balance constants
1 parent 6156140 commit e15070a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

e2e/artillery/src/init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const _network = process.env['NETWORK'];
1515

1616
// CONFIGURATIONS
1717
const REJECT_BALANCE_THRESHOLD = 0;
18-
const MASTER_LEDGER_MINIMUM_BALANCE = 10_000;
19-
const PKP_LEDGER_MINIMUM_BALANCE = 10_000;
18+
const MASTER_LEDGER_MINIMUM_BALANCE = 3_000;
19+
const PKP_LEDGER_MINIMUM_BALANCE = 3_000;
2020

2121
if (MASTER_LEDGER_MINIMUM_BALANCE < 0 || PKP_LEDGER_MINIMUM_BALANCE < 0) {
2222
throw new Error(

0 commit comments

Comments
 (0)