Skip to content

Commit

Permalink
Merge branch 'master' into update-master-from-release-v30
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivansete-status authored Jul 3, 2024
2 parents b477cf0 + 49f03f1 commit f7c4a9e
Show file tree
Hide file tree
Showing 186 changed files with 1,459 additions and 1,119 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@ Add any other context or screenshots about the feature request here.

### Acceptance criteria
A list of tasks that need to be done for the issue to be considered resolved.

### Epic
Epic title and link the feature refers to.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ explained in [nwaku-compose](https://github.com/waku-org/nwaku-compose/blob/1b56

### Release highlights

* RLN_v2 is used. The maximum rate can be set to
`N` messages per epoch, instead of just one message per epoch. See [this](https://github.com/waku-org/nwaku/issues/2345) for more details. Notice that we established an epoch of 10 minutes.
* RLN_v2 is used. The maximum rate can be set to `N` messages per epoch, instead of just one message per epoch. See [this](https://github.com/waku-org/nwaku/issues/2345) for more details. Notice that we established an epoch of 10 minutes.


### Changes

- rln-relay: add chain-id flag to wakunode and restrict usage if mismatches rpc provider ([#2858](https://github.com/waku-org/nwaku/pull/2858))
- rln: nullifierlog vulnerability ([#2855](https://github.com/waku-org/nwaku/pull/2855))
- rln: fix nullifierlog vulnerability ([#2855](https://github.com/waku-org/nwaku/pull/2855))
- chore: add TWN parameters for RLNv2 ([#2843](https://github.com/waku-org/nwaku/pull/2843))
- fix(rln-relay): clear nullifier log only if length is over max epoch gap ([#2836](https://github.com/waku-org/nwaku/pull/2836))
- rlnv2: clean fork of rlnv2 ([#2828](https://github.com/waku-org/nwaku/issues/2828)) ([a02832fe](https://github.com/waku-org/nwaku/commit/a02832fe))
Expand Down
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ ifeq ($(POSTGRES), 1)
NIM_PARAMS := $(NIM_PARAMS) -d:postgres -d:nimDebugDlOpen
endif

ifeq ($(DEBUG_DISCV5), 1)
NIM_PARAMS := $(NIM_PARAMS) -d:debugDiscv5
endif

clean: | clean-libbacktrace


Expand Down
5 changes: 1 addition & 4 deletions apps/chat2/chat2.nim
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,7 @@
when not (compileOption("threads")):
{.fatal: "Please, compile this program with the --threads:on option!".}

when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
{.push raises: [].}

import std/[strformat, strutils, times, options, random]
import
Expand Down
5 changes: 1 addition & 4 deletions apps/chat2bridge/chat2bridge.nim
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
{.push raises: [].}

import
std/[tables, times, strutils, hashes, sequtils],
Expand Down
5 changes: 1 addition & 4 deletions apps/liteprotocoltester/liteprotocoltester.nim
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
when (NimMajor, NimMinor) < (1, 4):
{.push raises: [Defect].}
else:
{.push raises: [].}
{.push raises: [].}

import
std/[options, strutils, os, sequtils, net],
Expand Down
Loading

0 comments on commit f7c4a9e

Please sign in to comment.