chore: rln_tree deprecation (#180)

This commit is contained in:
Darshan K 2025-09-26 15:27:11 +05:30 committed by GitHub
parent 41981d94e3
commit 18630478d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 3 additions and 6 deletions

1
.gitignore vendored
View File

@ -2,5 +2,4 @@
.env .env
keystore keystore
postgresql postgresql
rln_tree
.env .env

2
FAQ.md
View File

@ -30,7 +30,7 @@ Your node should have at least 40 connected peers, and you should see some traff
### My node is not able to start properly ### My node is not able to start properly
If you are using Contabo, we recommend moving to a different VPS vendor. If you are using Contabo, we recommend moving to a different VPS vendor.
If not, remove the keystore and rln_tree folders, run the ./register_rln script again, and try to run your node again. If not, remove the `keystore` folder, run the `./register_rln.sh` script again, and try to run your node again.
### Does running a node have any incentives? ### Does running a node have any incentives?
There are currently no incentives in place, but it's something currently being researched and designed. There are currently no incentives in place, but it's something currently being researched and designed.

View File

@ -100,11 +100,11 @@ Please review the latest https://github.com/waku-org/nwaku-compose/blob/master/.
Also, move your Sepolia RPC client (e.g., Infura) to a Linea Sepolia RPC client. Also, move your Sepolia RPC client (e.g., Infura) to a Linea Sepolia RPC client.
You will need to delete both the `keystore` and `rln_tree` folders, and register your membership again before using the new version by running the following commands: You will need to delete the `keystore` folder and register your membership again before using the new version by running the following commands:
1. `cd nwaku-compose` ( go into the root's repository folder ) 1. `cd nwaku-compose` ( go into the root's repository folder )
2. `docker-compose down` 2. `docker-compose down`
3. `sudo rm -r keystore rln_tree` 3. `sudo rm -r keystore`
4. `git pull origin master` 4. `git pull origin master`
5. `./register_rln.sh` 5. `./register_rln.sh`
6. `docker-compose up -d` 6. `docker-compose up -d`

View File

@ -55,7 +55,6 @@ services:
volumes: volumes:
- ./run_node.sh:/opt/run_node.sh:Z - ./run_node.sh:/opt/run_node.sh:Z
- ${CERTS_DIR:-./certs}:/etc/letsencrypt/:Z - ${CERTS_DIR:-./certs}:/etc/letsencrypt/:Z
- ./rln_tree:/etc/rln_tree/:Z
- ./keystore:/keystore:Z - ./keystore:/keystore:Z
entrypoint: sh entrypoint: sh
command: command:

View File

@ -134,7 +134,6 @@ exec /usr/bin/wakunode\
--store=true\ --store=true\
--store-message-db-url="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/postgres"\ --store-message-db-url="postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/postgres"\
--rln-relay-eth-client-address="${RLN_RELAY_ETH_CLIENT_ADDRESS}"\ --rln-relay-eth-client-address="${RLN_RELAY_ETH_CLIENT_ADDRESS}"\
--rln-relay-tree-path="/etc/rln_tree"\
${RLN_RELAY_CRED_PATH}\ ${RLN_RELAY_CRED_PATH}\
${RLN_RELAY_CRED_PASSWORD}\ ${RLN_RELAY_CRED_PASSWORD}\
${DNS_WSS_CMD}\ ${DNS_WSS_CMD}\