We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 73404f2 + 03475b4 commit 5442b12Copy full SHA for 5442b12
1 file changed
scripts/multiple_pxe.ts
@@ -74,7 +74,7 @@ async function main() {
74
75
// setup account on 2nd pxe
76
77
- pxe2.registerSender(ownerAddress)
+ await pxe2.registerSender(ownerAddress)
78
79
let secretKey2 = Fr.random();
80
let salt2 = Fr.random();
@@ -83,7 +83,7 @@ async function main() {
83
// deploy account on 2nd pxe
84
let tx2 = await schnorrAccount2.deploy({ fee: { paymentMethod } }).wait();
85
let wallet2 = await schnorrAccount2.getWallet();
86
- wallet2.registerSender(ownerAddress)
+ await wallet2.registerSender(ownerAddress)
87
88
// mint to account on 2nd pxe
89
0 commit comments