Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benesjan committed Aug 31, 2023
1 parent 887adc6 commit da8c8e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion yarn-project/canary/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ To build and execute the test:

`export FORK_BLOCK_NUMBER=17514288`
`export FORK_URL='https://mainnet.infura.io/v3/9928b52099854248b3a096be07a6b23c'`
`docker build --build-arg COMMIT_TAG=<verion of deployed artifacts on npm> .`
`docker build --build-arg COMMIT_TAG=<version of deployed artifacts on npm> .`
`cd ./scripts`
`docker-compose up`
4 changes: 2 additions & 2 deletions yarn-project/end-to-end/src/e2e_cli.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,11 +117,11 @@ describe('cli', () => {
expect(fetchedAddress).toEqual(newCompleteAddress.publicKey.toString());
});

it.only('deploys a contract & sends transactions', async () => {
it('deploys a contract & sends transactions', async () => {
// generate a private key
debug('Create an account using a private key');
await run('generate-private-key', false);
const privKey = findInLogs(/Private\sKey:\s+(?<privKey>[a-fA-F0-9]+)/)?.groups?.privKey;
const privKey = findInLogs(/Private\sKey:\s0x+(?<privKey>[a-fA-F0-9]+)/)?.groups?.privKey;
expect(privKey).toHaveLength(64);
await run(`create-account --private-key ${privKey}`);
const foundAddress = findInLogs(/Address:\s+(?<address>0x[a-fA-F0-9]+)/)?.groups?.address;
Expand Down

0 comments on commit da8c8e5

Please sign in to comment.