@@ -113,7 +113,7 @@ describe("Demo pre-alpha1", function () {
113
113
expect ( result . staked ) . to . equal ( ONE_THOUSAND_PNK . mul ( 4 ) ) ;
114
114
expect ( result . locked ) . to . equal ( 0 ) ;
115
115
logJurorBalance ( result ) ;
116
- } ) ;
116
+ } ) ;
117
117
const tx = await arbitrable . createDispute ( 2 , "0x00" , 0 , { value : arbitrationCost } ) ;
118
118
const trace = await network . provider . send ( "debug_traceTransaction" , [ tx . hash ] ) ;
119
119
const [ disputeId ] = ethers . utils . defaultAbiCoder . decode ( [ "uint" ] , `0x${ trace . returnValue } ` ) ;
@@ -141,7 +141,6 @@ describe("Demo pre-alpha1", function () {
141
141
142
142
await network . provider . send ( "evm_increaseTime" , [ 130 ] ) ; // Wait for minStakingTime
143
143
await network . provider . send ( "evm_mine" ) ;
144
-
145
144
expect ( await core . phase ( ) ) . to . equal ( Phase . staking ) ;
146
145
expect ( await disputeKit . phase ( ) ) . to . equal ( DisputeKitPhase . resolving ) ;
147
146
expect ( await disputeKit . disputesWithoutJurors ( ) ) . to . equal ( 1 ) ;
@@ -183,7 +182,6 @@ describe("Demo pre-alpha1", function () {
183
182
await core . execute ( 0 , 0 , 1000 ) ;
184
183
const ticket1 = await fastBridgeSender . currentTicketID ( ) ;
185
184
expect ( ticket1 ) . to . equal ( 1 ) ;
186
-
187
185
const tx4 = await core . executeRuling ( 0 ) ;
188
186
expect ( tx4 ) . to . emit ( fastBridgeSender , "OutgoingMessage" ) ;
189
187
0 commit comments