@@ -69,7 +69,7 @@ func (s *ResharingTestSuite) Test_ValidResharingProcess_OldAndNewSubset() {
6969 pool := pool .New ().WithContext (context .Background ()).WithCancelOnError ()
7070 for i , coordinator := range coordinators {
7171 pool .Go (func (ctx context.Context ) error {
72- return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn )
72+ return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn , peer . ID ( "" ) )
7373 })
7474 }
7575
@@ -116,7 +116,7 @@ func (s *ResharingTestSuite) Test_ValidResharingProcess_RemovePeer() {
116116 pool := pool .New ().WithContext (context .Background ()).WithCancelOnError ()
117117 for i , coordinator := range coordinators {
118118 pool .Go (func (ctx context.Context ) error {
119- return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn )
119+ return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn , peer . ID ( "" ) )
120120 })
121121 }
122122
@@ -166,7 +166,7 @@ func (s *ResharingTestSuite) Test_InvalidResharingProcess_InvalidOldThreshold_Le
166166 pool := pool .New ().WithContext (context .Background ())
167167 for i , coordinator := range coordinators {
168168 pool .Go (func (ctx context.Context ) error {
169- return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn )
169+ return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn , peer . ID ( "" ) )
170170 })
171171 }
172172 err := pool .Wait ()
@@ -215,7 +215,7 @@ func (s *ResharingTestSuite) Test_InvalidResharingProcess_InvalidOldThreshold_Bi
215215 pool := pool .New ().WithContext (context .Background ())
216216 for i , coordinator := range coordinators {
217217 pool .Go (func (ctx context.Context ) error {
218- return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn )
218+ return coordinator .Execute (ctx , []tss.TssProcess {processes [i ]}, resultChn , peer . ID ( "" ) )
219219 })
220220 }
221221
0 commit comments