From 6a4f9b6c38d1a457a9953a103b895179876ce7e1 Mon Sep 17 00:00:00 2001 From: Tomasz Slabon Date: Mon, 9 Oct 2023 12:00:45 +0200 Subject: [PATCH] Increased number of attempts for signing integration tests --- pkg/tbtc/signing_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/tbtc/signing_test.go b/pkg/tbtc/signing_test.go index 3f1a735872..918136478a 100644 --- a/pkg/tbtc/signing_test.go +++ b/pkg/tbtc/signing_test.go @@ -185,7 +185,7 @@ func setupSigningExecutor(t *testing.T) *signingExecutor { // Test block counter is much quicker than the real world one. // Set more attempts to give more time for computations. - executor.signingAttemptsLimit *= 5 + executor.signingAttemptsLimit *= 8 return executor }