solotto 1.2.1 → 1.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/solotto.js +0 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solotto",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "Solana lottery client",
5
5
  "type": "module",
6
6
  "types": "./solotto.d.ts",
package/solotto.js CHANGED
@@ -277,7 +277,6 @@ class Lottery extends EventEmitter {
277
277
  { pubkey: new PublicKey(LOTTO.ticket.ticketPda), isSigner: false, isWritable: false },
278
278
  { pubkey: new PublicKey(LOTTO.prizePoolAddress), isSigner: false, isWritable: true },
279
279
  { pubkey: new PublicKey(LOTTO.authority), isSigner: false, isWritable: true },
280
- { pubkey: SystemProgram.programId, isSigner: false, isWritable: false },
281
280
  ];
282
281
  const ix = new TransactionInstruction({programId: this.program, keys, data: await claimData()});
283
282
  const _tx_ = {};