File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
packages/sequencer/test/settlement Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,9 @@ export const settlementTestFn = (
255
255
}
256
256
257
257
beforeAll ( async ( ) => {
258
+ console . log ( "Setup" ) ;
258
259
appChain = setupAppChain ( ) ;
260
+ console . log ( "Start" ) ;
259
261
260
262
await appChain . start (
261
263
settlementType === "proven" ,
@@ -282,18 +284,22 @@ export const settlementTestFn = (
282
284
const accountService = appChain . sequencer . dependencyContainer . resolve (
283
285
MinaBlockchainAccounts
284
286
) ;
287
+ console . log ( "GetFunded" ) ;
285
288
const accs = await accountService . getFundedAccounts ( 3 ) ;
286
289
testAccounts = accs . slice ( 1 ) ;
287
290
288
291
console . log (
289
292
`Funding ${ sequencerKey . toPublicKey ( ) . toBase58 ( ) } from ${ accs [ 0 ] . toPublicKey ( ) . toBase58 ( ) } `
290
293
) ;
291
294
295
+ console . log ( "FundAccount" ) ;
292
296
await accountService . fundAccountFrom (
293
297
accs [ 0 ] ,
294
298
sequencerKey . toPublicKey ( ) ,
295
299
20 * 1e9
296
300
) ;
301
+
302
+ console . log ( "beforeAll finished" ) ;
297
303
} , timeout ) ;
298
304
299
305
afterAll ( ( ) => {
You can’t perform that action at this time.
0 commit comments