-
Notifications
You must be signed in to change notification settings - Fork 597
feat: add key registry to deployment (e2e & sandbox) #5875
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
3eb0d7b
72ca505
3da10c1
1f166da
f09c76b
dfde46d
7ead539
9de1a5f
eb6e7ae
8a26311
67e71c9
3f4fe51
1366fc9
4a8eca9
437514f
99a5b2b
be3f86c
5708964
ff5af43
c6b1b7e
2119e01
d46db22
c3bbd71
b809aa2
d210838
4e2f5a4
501e079
426be8b
33d2e61
a2f858b
de746ea
41e6ec5
3e8d86b
4355e8f
59e5cfa
bf2f5fa
a87bbf5
7a69d69
3484dde
06f7604
fecb707
40fb063
aa6bde4
12ca58c
3922eef
693137b
f3f2fc4
3b9db8e
81c3496
2e75e61
a5e1b96
946a835
2e8ed6c
8e97be0
715cfed
8365d54
73853cf
abe64eb
55f1006
5cb8d5f
af07727
ea63152
6e35053
666921d
ecdcf29
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -11,8 +11,9 @@ describe('ContractClassRegisteredEvent', () => { | |
| ); | ||
| expect(event.artifactHash.toString()).toEqual('0x072dce903b1a299d6820eeed695480fe9ec46658b1101885816aed6dd86037f0'); | ||
| expect(event.packedPublicBytecode.length).toEqual(27090); | ||
| // TODO: #5860 | ||
| expect(computePublicBytecodeCommitment(event.packedPublicBytecode).toString()).toEqual( | ||
| '0x1d5c54998c08cee8ad4a8af5740f2e844fe6db3a5bb4b6382a48b2daeabeee3f', | ||
| '0x0000000000000000000000000000000000000000000000000000000000000005', | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you add a ref to 5860 as you have above, got confused when i looked a second ago
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done Addressed in |
||
| ); | ||
| }); | ||
| }); | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,7 +20,7 @@ describe('e2e_voting_contract', () => { | |
| votingContract = await EasyPrivateVotingContract.deploy(wallet, owner).send().deployed(); | ||
|
|
||
| logger.info(`Counter contract deployed at ${votingContract.address}`); | ||
| }, 25_000); | ||
| }, 45_000); | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is going in a good direction 🤣 |
||
|
|
||
| afterAll(() => teardown()); | ||
|
|
||
|
|
||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please throw here an error if the address of the deployed contract does not match the constant.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Addressed in
99a5b2b