mirror of
https://github.com/status-im/js-waku-examples.git
synced 2025-01-27 15:24:52 +00:00
fix: change var name
a value is cannot be a default value if it's not configurable
This commit is contained in:
parent
a0ff2445b8
commit
7947f3e577
@ -205,7 +205,7 @@
|
|||||||
let retrievedRLNEvents = false;
|
let retrievedRLNEvents = false;
|
||||||
const rlnInstancePromise = create();
|
const rlnInstancePromise = create();
|
||||||
|
|
||||||
const DEFAULT_SIGNATURE_MESSAGE =
|
const SIGNATURE_MESSAGE =
|
||||||
"The signature of this message will be used to generate your RLN credentials. Anyone accessing it may send messages on your behalf, please only share with the RLN dApp";
|
"The signature of this message will be used to generate your RLN credentials. Anyone accessing it may send messages on your behalf, please only share with the RLN dApp";
|
||||||
|
|
||||||
// Load zero-kit WASM blob.
|
// Load zero-kit WASM blob.
|
||||||
@ -283,7 +283,7 @@
|
|||||||
importFromWalletButton.onclick = async () => {
|
importFromWalletButton.onclick = async () => {
|
||||||
const signer = provider.getSigner();
|
const signer = provider.getSigner();
|
||||||
|
|
||||||
const signature = await signer.signMessage(DEFAULT_SIGNATURE_MESSAGE);
|
const signature = await signer.signMessage(SIGNATURE_MESSAGE);
|
||||||
|
|
||||||
membershipKey = await rlnInstance.generateSeededMembershipKey(
|
membershipKey = await rlnInstance.generateSeededMembershipKey(
|
||||||
signature
|
signature
|
||||||
|
Loading…
x
Reference in New Issue
Block a user