@@ -149,7 +149,7 @@ func (s *WakuRLNRelayDynamicSuite) TestDynamicGroupManagement() {
149
149
150
150
membershipIndex := s .register (appKeystore , u1Credentials , s .u1PrivKey )
151
151
152
- gm , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , membershipIndex , appKeystore , keystorePassword , prometheus .DefaultRegisterer , rlnInstance , rt , utils .Logger ())
152
+ gm , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , & membershipIndex , appKeystore , keystorePassword , prometheus .DefaultRegisterer , rlnInstance , rt , utils .Logger ())
153
153
s .Require ().NoError (err )
154
154
155
155
// initialize the WakuRLNRelay
@@ -236,7 +236,7 @@ func (s *WakuRLNRelayDynamicSuite) TestMerkleTreeConstruction() {
236
236
rlnInstance , rootTracker , err := GetRLNInstanceAndRootTracker (s .tmpRLNDBPath ())
237
237
s .Require ().NoError (err )
238
238
// mount the rln relay protocol in the on-chain/dynamic mode
239
- gm , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , membershipIndex , appKeystore , keystorePassword , prometheus .DefaultRegisterer , rlnInstance , rootTracker , utils .Logger ())
239
+ gm , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , & membershipIndex , appKeystore , keystorePassword , prometheus .DefaultRegisterer , rlnInstance , rootTracker , utils .Logger ())
240
240
s .Require ().NoError (err )
241
241
242
242
rlnRelay := New (group_manager.Details {
@@ -275,7 +275,7 @@ func (s *WakuRLNRelayDynamicSuite) TestCorrectRegistrationOfPeers() {
275
275
// mount the rln relay protocol in the on-chain/dynamic mode
276
276
rootInstance , rootTracker , err := GetRLNInstanceAndRootTracker (s .tmpRLNDBPath ())
277
277
s .Require ().NoError (err )
278
- gm1 , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , membershipGroupIndex , appKeystore , keystorePassword , prometheus .DefaultRegisterer , rootInstance , rootTracker , utils .Logger ())
278
+ gm1 , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , & membershipGroupIndex , appKeystore , keystorePassword , prometheus .DefaultRegisterer , rootInstance , rootTracker , utils .Logger ())
279
279
s .Require ().NoError (err )
280
280
281
281
rlnRelay1 := New (group_manager.Details {
@@ -299,7 +299,7 @@ func (s *WakuRLNRelayDynamicSuite) TestCorrectRegistrationOfPeers() {
299
299
// mount the rln relay protocol in the on-chain/dynamic mode
300
300
rootInstance , rootTracker , err = GetRLNInstanceAndRootTracker (s .tmpRLNDBPath ())
301
301
s .Require ().NoError (err )
302
- gm2 , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , membershipGroupIndex , appKeystore2 , keystorePassword , prometheus .DefaultRegisterer , rootInstance , rootTracker , utils .Logger ())
302
+ gm2 , err := dynamic .NewDynamicGroupManager (s .web3Config .ETHClientAddress , s .web3Config .RegistryContract .Address , & membershipGroupIndex , appKeystore2 , keystorePassword , prometheus .DefaultRegisterer , rootInstance , rootTracker , utils .Logger ())
303
303
s .Require ().NoError (err )
304
304
305
305
rlnRelay2 := New (group_manager.Details {
0 commit comments