We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5970449 commit 861c85dCopy full SHA for 861c85d
contracts/test/arbitration/staking.ts
@@ -233,7 +233,10 @@ describe("Staking", async () => {
233
balanceBefore = await pnk.balanceOf(deployer);
234
await expect(sortition.executeDelayedStakes(10))
235
.to.emit(sortition, "StakeSet")
236
- .withArgs(deployer, 2, PNK(2000));
+ .withArgs(deployer, 2, PNK(2000))
237
+ .to.not.emit(sortition, "StakeDelayedNotTransferred")
238
+ .to.not.emit(sortition, "StakeDelayedAlreadyTransferred")
239
+ .to.not.emit(sortition, "StakeDelayedAlreadyTransferredWithdrawn");
240
expect(await sortition.getJurorBalance(deployer, 2)).to.be.deep.equal([
241
PNK(4000),
242
PNK(300), // we're the only juror so we are drawn 3 times
0 commit comments