@@ -37,23 +37,17 @@ var (
3737 DefaultNumValidators = 1
3838 DefaultNumFullNodes = 0
3939 DefaultHaltHeightDelta = int64 (9 ) // will propose upgrade this many blocks in the future
40- DefaultMinBaseGasPrice = sdkmath .LegacyMustNewDecFromStr ("0.001 " )
41- DefaultBaseGasPrice = sdkmath .LegacyMustNewDecFromStr ("0. 1" )
40+ DefaultMinBaseGasPrice = sdkmath .LegacyMustNewDecFromStr ("0.002 " )
41+ DefaultBaseGasPrice = sdkmath .LegacyMustNewDecFromStr ("1" )
4242 DefaultNoHostMount = false
4343
4444 JunoRepo = "ghcr.io/cosmoscontracts/juno"
45- HubRepo = "ghcr.io/cosmos/gaia"
4645 junoRepo , junoVersion = GetDockerImageInfo ()
4746 JunoImage = ibc.DockerImage {
4847 Repository : junoRepo ,
4948 Version : junoVersion ,
5049 UIDGID : "1025:1025" ,
5150 }
52- HubImage = ibc.DockerImage {
53- Repository : HubRepo ,
54- Version : "v23.3.0" ,
55- UIDGID : "1025:1025" ,
56- }
5751
5852 DefaultGenesisKV = []cosmos.GenesisKV {
5953 {
9488 MinBaseGasPrice : DefaultMinBaseGasPrice ,
9589 MinLearningRate : feemarkettypes .DefaultAIMDMinLearningRate ,
9690 MaxLearningRate : feemarkettypes .DefaultAIMDMaxLearningRate ,
97- MaxBlockUtilization : 100_000_000 ,
98- Window : 16 ,
91+ MaxBlockUtilization : 3_000_000 ,
92+ Window : 8 ,
9993 FeeDenom : DefaultDenom ,
10094 Enabled : true ,
10195 DistributeFees : false ,
@@ -106,7 +100,7 @@ var (
106100 Value : feemarkettypes.State {
107101 BaseGasPrice : DefaultBaseGasPrice ,
108102 LearningRate : feemarkettypes .DefaultAIMDMaxLearningRate ,
109- Window : make ([]uint64 , 16 ),
103+ Window : make ([]uint64 , 8 ),
110104 Index : 0 ,
111105 },
112106 },
@@ -123,7 +117,7 @@ var (
123117 Gas : "auto" ,
124118 CoinType : "118" ,
125119 GasPrices : "" ,
126- GasAdjustment : 10 ,
120+ GasAdjustment : 3 ,
127121 TrustingPeriod : "112h" ,
128122 NoHostMount : DefaultNoHostMount ,
129123 EncodingConfig : MakeJunoEncoding (),
@@ -141,9 +135,8 @@ var (
141135 }
142136
143137 DefaultTxCfg = TestTxConfig {
144- SmallSendsNum : 1 ,
145- LargeSendsNum : 400 ,
146- TargetIncreaseGasPrice : sdkmath .LegacyMustNewDecFromStr ("0.11" ),
138+ SmallSendsNum : 1 ,
139+ LargeSendsNum : 400 ,
147140 }
148141)
149142
@@ -154,7 +147,7 @@ func init() {
154147 sdk .GetConfig ().SetCoinType (118 )
155148}
156149
157- // junoEncoding registers the Juno specific module codecs so that the associated types and msgs
150+ // MakeJunoEncoding registers the Juno specific module codecs so that the associated types and msgs
158151// will be supported when writing to the blocksdb sqlite database.
159152func MakeJunoEncoding () * testutil.TestEncodingConfig {
160153 cfg := cosmos .DefaultEncoding ()
0 commit comments