Skip to content

Commit

Permalink
chore: CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Orlando committed Sep 1, 2023
1 parent 47414b5 commit 73acbfc
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions starknet/test/l1-execution.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,14 @@ describe('L1 Avatar Execution', function () {
let ethRelayer: starknet.StarknetContract;

before(async function () {
console.log('Getting block');
const b = await starknet.getBlock();
console.log(b);
// console.log('Getting block');
// const b = await starknet.getBlock();
// console.log(b);

const signers = await ethers.getSigners();
signer = signers[0];

console.log(signer.provider.getBlock());
accountSH = await starknet.OpenZeppelinAccount.getAccountFromAddress(
account_address,
account_pk,
Expand All @@ -48,8 +53,7 @@ describe('L1 Avatar Execution', function () {
account_pk,
);

const signers = await ethers.getSigners();
signer = signers[0];


const starkTxAuthenticatorFactory = await starknet.getContractFactory(
'sx_StarkTxAuthenticator',
Expand Down

0 comments on commit 73acbfc

Please sign in to comment.