Skip to content

Commit

Permalink
feat: stackers only target 1/2/3 slots
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed Mar 26, 2024
1 parent 43f7ae0 commit 6a6e211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stacking/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const accounts = process.env.STACKING_KEYS!.split(',').map((privKey, inde
btcAddr: publicKeyToBtcAddress(pubKey),
signerPrivKey: signerPrivKey,
signerPubKey: signerPubKey,
targetSlots: (index + 1) * 2,
targetSlots: index + 1,
index,
client: new StackingClient(stxAddress, network),
logger: logger.child({
Expand Down

0 comments on commit 6a6e211

Please sign in to comment.