@@ -45,6 +45,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_MissingDepositID() {
4545 Protocol : "across" ,
4646 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
4747 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
48+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
4849 }
4950 body , _ := json .Marshal (input )
5051
@@ -75,6 +76,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_MissingCaller() {
7576 Protocol : "across" ,
7677 DepositId : & handlers.BigInt {big .NewInt (1000 )},
7778 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
79+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
7880 }
7981 body , _ := json .Marshal (input )
8082
@@ -105,6 +107,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_MissingLiquidityPool() {
105107 Protocol : "across" ,
106108 DepositId : & handlers.BigInt {big .NewInt (1000 )},
107109 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
110+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
108111 }
109112 body , _ := json .Marshal (input )
110113
@@ -136,6 +139,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_InvalidChainID() {
136139 Protocol : "across" ,
137140 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
138141 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
142+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
139143 }
140144 body , _ := json .Marshal (input )
141145
@@ -167,6 +171,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_ChainNotSupported() {
167171 Protocol : "across" ,
168172 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
169173 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
174+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
170175 }
171176 body , _ := json .Marshal (input )
172177
@@ -198,6 +203,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_InvalidProtocol() {
198203 Protocol : "invalid" ,
199204 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
200205 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
206+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
201207 }
202208 body , _ := json .Marshal (input )
203209
@@ -229,6 +235,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_ErrorHandlingMessage() {
229235 Protocol : "across" ,
230236 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
231237 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
238+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
232239 }
233240 body , _ := json .Marshal (input )
234241
@@ -260,6 +267,7 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_Success() {
260267 Protocol : "across" ,
261268 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
262269 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
270+ Nonce : & handlers.BigInt {big .NewInt (1001 )},
263271 }
264272 body , _ := json .Marshal (input )
265273
0 commit comments