@@ -237,7 +237,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_ErrorHandlingMessage() {
237237 LiquidityPool : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
238238 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
239239 Nonce : & handlers.BigInt {big .NewInt (1001 )},
240- Deadline : uint64 (time .Now ().Unix ()),
240+ //nolint:gosec
241+ Deadline : uint64 (time .Now ().Unix ()),
241242 }
242243 body , _ := json .Marshal (input )
243244
@@ -271,7 +272,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_AcrossSuccess() {
271272 Caller : "0xbe526bA5d1ad94cC59D7A79d99A59F607d31A657" ,
272273 Nonce : & handlers.BigInt {big .NewInt (1001 )},
273274 RepaymentChainId : 5 ,
274- Deadline : uint64 (time .Now ().Unix ()),
275+ //nolint:gosec
276+ Deadline : uint64 (time .Now ().Unix ()),
275277 }
276278 body , _ := json .Marshal (input )
277279
@@ -307,7 +309,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_MayanSuccess() {
307309 Calldata : "0xbe5" ,
308310 Nonce : & handlers.BigInt {big .NewInt (1001 )},
309311 BorrowAmount : & handlers.BigInt {big .NewInt (1000 )},
310- Deadline : uint64 (time .Now ().Unix ()),
312+ //nolint:gosec
313+ Deadline : uint64 (time .Now ().Unix ()),
311314 }
312315 body , _ := json .Marshal (input )
313316
@@ -342,7 +345,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_RhinestoneSuccess() {
342345 Calldata : "0xbe5" ,
343346 Nonce : & handlers.BigInt {big .NewInt (1001 )},
344347 BorrowAmount : & handlers.BigInt {big .NewInt (1000 )},
345- Deadline : uint64 (time .Now ().Unix ()),
348+ //nolint:gosec
349+ Deadline : uint64 (time .Now ().Unix ()),
346350 }
347351 body , _ := json .Marshal (input )
348352
@@ -377,7 +381,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_LifiSuccess() {
377381 Calldata : "0xbe5" ,
378382 Nonce : & handlers.BigInt {big .NewInt (1001 )},
379383 BorrowAmount : & handlers.BigInt {big .NewInt (1000 )},
380- Deadline : uint64 (time .Now ().Unix ()),
384+ //nolint:gosec
385+ Deadline : uint64 (time .Now ().Unix ()),
381386 }
382387 body , _ := json .Marshal (input )
383388
@@ -412,7 +417,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_LighterSuccess() {
412417 Calldata : "0xbe5" ,
413418 Nonce : & handlers.BigInt {big .NewInt (1001 )},
414419 BorrowAmount : & handlers.BigInt {big .NewInt (1000 )},
415- Deadline : uint64 (time .Now ().Unix ()),
420+ //nolint:gosec
421+ Deadline : uint64 (time .Now ().Unix ()),
416422 }
417423 body , _ := json .Marshal (input )
418424
@@ -447,7 +453,8 @@ func (s *SigningHandlerTestSuite) Test_HandleSigning_SprinterSuccess() {
447453 Calldata : "0xbe5" ,
448454 Nonce : & handlers.BigInt {big .NewInt (1001 )},
449455 BorrowAmount : & handlers.BigInt {big .NewInt (1000 )},
450- Deadline : uint64 (time .Now ().Unix ()),
456+ //nolint:gosec
457+ Deadline : uint64 (time .Now ().Unix ()),
451458 }
452459 body , _ := json .Marshal (input )
453460
0 commit comments