We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c5f905 commit 1eae2e8Copy full SHA for 1eae2e8
contracts/FluiDex.sol
@@ -212,6 +212,17 @@ contract FluiDexDemo is
212
bjjPubkey: bjjPubkey
213
});
214
userBjjPubkeyToUserId[bjjPubkey] = userId;
215
+
216
+ Operations.Registry memory op = Operations.Registry({
217
+ accountId: userId,
218
+ l2key: bjjPubkey
219
+ });
220
221
+ addPriorityRequest(
222
+ Operations.OpType.Registry,
223
+ Operations.writeRegistryPubdataForPriorityQueue(op)
224
+ );
225
226
emit RegisterUser(ethAddr, userId, bjjPubkey);
227
}
228
0 commit comments