@@ -46,7 +46,7 @@ func TestF3_Enabled(t *testing.T) {
46
46
blocktime := 100 * time .Millisecond
47
47
e := setup (t , blocktime )
48
48
49
- e .waitTillF3Instance (lf3 .ParticipationLeaseTerm + 1 , 40 * time .Second )
49
+ e .waitTillF3Instance (lf3 .ParticipationLeaseTerm + 1 , 60 * time .Second )
50
50
}
51
51
52
52
// Test that checks that F3 can be rebootsrapped by changing the manifest
@@ -58,7 +58,7 @@ func TestF3_Rebootstrap(t *testing.T) {
58
58
n := e .minerFullNodes [0 ]
59
59
60
60
newInstance := uint64 (2 )
61
- e .waitTillF3Instance (newInstance , 20 * time .Second )
61
+ e .waitTillF3Instance (newInstance , 60 * time .Second )
62
62
63
63
prevCert , err := n .F3GetCertificate (e .testCtx , newInstance )
64
64
require .NoError (t , err )
@@ -68,7 +68,7 @@ func TestF3_Rebootstrap(t *testing.T) {
68
68
cpy .NetworkName = BaseNetworkName + "/2"
69
69
e .ms .UpdateManifest (& cpy )
70
70
71
- newManifest := e .waitTillManifestChange (& cpy , 20 * time .Second )
71
+ newManifest := e .waitTillManifestChange (& cpy , 60 * time .Second )
72
72
require .True (t , newManifest .Equal (& cpy ), "Expected %v but got %v" , cpy , newManifest )
73
73
e .waitTillF3Rebootstrap (60 * time .Second )
74
74
e .waitTillF3Instance (prevCert .GPBFTInstance + 1 , 60 * time .Second )
@@ -82,23 +82,23 @@ func TestF3_PauseAndRebootstrap(t *testing.T) {
82
82
e := setup (t , blocktime )
83
83
84
84
newInstance := uint64 (2 )
85
- e .waitTillF3Instance (newInstance , 20 * time .Second )
85
+ e .waitTillF3Instance (newInstance , 60 * time .Second )
86
86
87
87
origManifest := * e .m
88
88
pausedManifest := origManifest
89
89
pausedManifest .Pause = true
90
90
e .ms .UpdateManifest (& pausedManifest )
91
- e .waitTillF3Pauses (30 * time .Second )
91
+ e .waitTillF3Pauses (60 * time .Second )
92
92
93
93
e .ms .UpdateManifest (& origManifest )
94
- e .waitTillF3Runs (30 * time .Second )
94
+ e .waitTillF3Runs (60 * time .Second )
95
95
96
96
cpy := * e .m
97
97
cpy .NetworkName = BaseNetworkName + "/2"
98
98
cpy .BootstrapEpoch = 25
99
99
e .ms .UpdateManifest (& cpy )
100
100
101
- e .waitTillManifestChange (& cpy , 20 * time .Second )
101
+ e .waitTillManifestChange (& cpy , 60 * time .Second )
102
102
e .waitTillF3Rebootstrap (60 * time .Second )
103
103
}
104
104
@@ -116,9 +116,9 @@ func TestF3_Bootstrap(t *testing.T) {
116
116
117
117
e := setupWithStaticManifest (t , staticManif , true )
118
118
e .ms .UpdateManifest (& dynamicManif )
119
- e .waitTillManifestChange (& dynamicManif , 20 * time .Second )
119
+ e .waitTillManifestChange (& dynamicManif , 60 * time .Second )
120
120
e .waitTillF3Instance (2 , 60 * time .Second )
121
- e .waitTillManifestChange (staticManif , 20 * time .Second )
121
+ e .waitTillManifestChange (staticManif , 60 * time .Second )
122
122
e .waitTillF3Instance (2 , 60 * time .Second )
123
123
124
124
// Try to switch back, we should ignore the manifest update.
0 commit comments