File tree Expand file tree Collapse file tree 3 files changed +10
-14
lines changed Expand file tree Collapse file tree 3 files changed +10
-14
lines changed Original file line number Diff line number Diff line change @@ -77,12 +77,12 @@ steps:
77
77
password :
78
78
from_secret : docker_password
79
79
tags :
80
- - 15.0.0-alpha.6
80
+ - 15.0.0-alpha.7
81
81
when :
82
82
event :
83
83
- push
84
84
branch :
85
- - jhernandezb/ci-starlark
85
+ - jhernandezb/prepare-main
86
86
- main
87
87
- name : docker_release
88
88
image : plugins/docker
@@ -353,7 +353,7 @@ steps:
353
353
- ./scripts/ci/upgrade/proposal.sh
354
354
- name : stargaze-upgraded
355
355
pull : always
356
- image : publicawesome/stargaze:15.0.0-alpha.6
356
+ image : publicawesome/stargaze:15.0.0-alpha.7
357
357
commands :
358
358
- ./scripts/ci/upgrade/run-upgrade.sh
359
359
environment :
@@ -372,7 +372,7 @@ steps:
372
372
- http://icad:26657
373
373
- name : check-params
374
374
pull : always
375
- image : publicawesome/stargaze:15.0.0-alpha.6
375
+ image : publicawesome/stargaze:15.0.0-alpha.7
376
376
commands :
377
377
- starsd q mint params --node http://stargaze-upgraded:26657
378
378
- starsd q alloc params --node http://stargaze-upgraded:26657
@@ -411,7 +411,7 @@ steps:
411
411
trigger :
412
412
branch :
413
413
- main
414
- - jhernandezb/ci-starlark
414
+ - jhernandezb/prepare-main
415
415
event :
416
416
- pull_request
417
417
- push
@@ -424,6 +424,6 @@ volumes:
424
424
425
425
---
426
426
kind : signature
427
- hmac : b4fff1025b0382cb7da82819a4193894007fe959061dbfe709ab9e142b4933da
427
+ hmac : 556584e395ad80e6ba22597ba36bbd28b6fbfe44a2e9fe5f2510ee875ff74ec6
428
428
429
429
...
Original file line number Diff line number Diff line change @@ -7,14 +7,10 @@ import (
7
7
"github.com/cosmos/cosmos-sdk/types/module"
8
8
upgrades "github.com/public-awesome/stargaze/v15/app/upgrades"
9
9
mainnetupgradesv15 "github.com/public-awesome/stargaze/v15/app/upgrades/mainnet/v15"
10
- testnetupgradesv15b2 "github.com/public-awesome/stargaze/v15/app/upgrades/testnet/v15b2"
11
- testnetupgradesv15b3 "github.com/public-awesome/stargaze/v15/app/upgrades/testnet/v15b3"
12
10
)
13
11
14
12
var Upgrades = []upgrades.Upgrade {
15
13
mainnetupgradesv15 .Upgrade ,
16
- testnetupgradesv15b2 .Upgrade ,
17
- testnetupgradesv15b3 .Upgrade ,
18
14
}
19
15
20
16
func (app App ) RegisterUpgradeHandlers (configurator module.Configurator ) {
Original file line number Diff line number Diff line change @@ -18,19 +18,19 @@ type PreferredSetting struct {
18
18
var preferredSettings = []PreferredSetting {
19
19
{
20
20
ViperKey : "consensus.timeout_commit" ,
21
- Value : "3s " ,
21
+ Value : "2750ms " ,
22
22
Set : func (serverCtx * server.Context , key , value string ) error {
23
23
serverCtx .Viper .Set (key , value )
24
- serverCtx .Config .Consensus .TimeoutCommit = 3 * time .Second
24
+ serverCtx .Config .Consensus .TimeoutCommit = 2750 * time .Millisecond
25
25
return nil
26
26
},
27
27
},
28
28
{
29
29
ViperKey : "consensus.timeout_propose" ,
30
- Value : "2s " ,
30
+ Value : "1750ms " ,
31
31
Set : func (serverCtx * server.Context , key , value string ) error {
32
32
serverCtx .Viper .Set (key , value )
33
- serverCtx .Config .Consensus .TimeoutPropose = 2 * time .Second
33
+ serverCtx .Config .Consensus .TimeoutPropose = 1750 * time .Millisecond
34
34
return nil
35
35
},
36
36
},
You can’t perform that action at this time.
0 commit comments