Conversation
- e2e testing adjustments - bump to newer wasmd 0.54 - fix tests
- fix upgrade test - change legacy height
update upgrade height of multi test
- update go version to 1.24.7
fix ibc hooks ic test change to cosmos interchaintest v10
|
LFG |
| interfaceRegistry, err := types.NewInterfaceRegistryWithOptions(types.InterfaceRegistryOptions{ | ||
| ProtoFiles: proto.HybridResolver, | ||
| SigningOptions: signing.Options{ | ||
| AddressCodec: addresscodec.NewBech32Codec(core.Bech32PrefixAccAddr), |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants Warning
| ProtoFiles: proto.HybridResolver, | ||
| SigningOptions: signing.Options{ | ||
| AddressCodec: addresscodec.NewBech32Codec(core.Bech32PrefixAccAddr), | ||
| ValidatorAddressCodec: addresscodec.NewBech32Codec(core.Bech32PrefixValAddr), |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants Warning
| for _, opt := range modOpts { | ||
| if opt != nil { | ||
| opt.Tx = nil | ||
| } | ||
| } |
Check warning
Code scanning / CodeQL
Iteration over map Warning
| ms := store.NewCommitMultiStore(db) | ||
| ctx := sdk.NewContext(ms, tmproto.Header{Time: time.Now().UTC()}, false, log.NewNopLogger()) | ||
| ms := store.NewCommitMultiStore(db, sdklog.NewNopLogger(), storemetrics.NewNoOpMetrics()) | ||
| ctx := sdk.NewContext(ms, tmproto.Header{Time: time.Now().UTC()}, false, sdklog.NewNopLogger()) |
Check warning
Code scanning / CodeQL
Calling the system time Warning test
| keyStaking := sdk.NewKVStoreKey(stakingtypes.StoreKey) | ||
| keyDistr := sdk.NewKVStoreKey(distrtypes.StoreKey) | ||
| // Ensure Terra bech32 prefixes are set for address codecs used by keepers | ||
| sdk.GetConfig().SetBech32PrefixForAccount(core.Bech32PrefixAccAddr, core.Bech32PrefixAccPub) |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants Warning test
| keyCapability := sdk.NewKVStoreKey(capabilitytypes.StoreKey) | ||
| // keyUpgrade := sdk.NewKVStoreKey(upgradetypes.StoreKey) | ||
| memKeyCapability := sdk.NewMemoryStoreKeys(capabilitytypes.MemStoreKey) | ||
| sdk.GetConfig().SetBech32PrefixForValidator(core.Bech32PrefixValAddr, core.Bech32PrefixValPub) |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants Warning test
| // keyUpgrade := sdk.NewKVStoreKey(upgradetypes.StoreKey) | ||
| memKeyCapability := sdk.NewMemoryStoreKeys(capabilitytypes.MemStoreKey) | ||
| sdk.GetConfig().SetBech32PrefixForValidator(core.Bech32PrefixValAddr, core.Bech32PrefixValPub) | ||
| sdk.GetConfig().SetBech32PrefixForConsensusNode(core.Bech32PrefixConsAddr, core.Bech32PrefixConsPub) |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants Warning test
| // keyUpgrade := sdk.NewKVStoreKey(upgradetypes.StoreKey) | ||
| memKeyCapability := sdk.NewMemoryStoreKeys(capabilitytypes.MemStoreKey) | ||
| sdk.GetConfig().SetBech32PrefixForValidator(core.Bech32PrefixValAddr, core.Bech32PrefixValPub) | ||
| sdk.GetConfig().SetBech32PrefixForConsensusNode(core.Bech32PrefixConsAddr, core.Bech32PrefixConsPub) |
Check warning
Code scanning / CodeQL
Directly using the bech32 constants Warning test
| ms := store.NewCommitMultiStore(db) | ||
| ctx := sdk.NewContext(ms, tmproto.Header{Time: time.Now().UTC()}, false, log.NewNopLogger()) | ||
| ms := store.NewCommitMultiStore(db, sdklog.NewNopLogger(), storemetrics.NewNoOpMetrics()) | ||
| ctx := sdk.NewContext(ms, tmproto.Header{Time: time.Now().UTC()}, false, sdklog.NewNopLogger()) |
Check warning
Code scanning / CodeQL
Calling the system time Warning test
| // EndBlock implements the SDK v0.50 end blocker signature. | ||
| func (am AppModule) EndBlock(ctx context.Context) ([]abci.ValidatorUpdate, error) { | ||
| sdkCtx := sdk.UnwrapSDKContext(ctx) | ||
| EndBlocker(sdkCtx, am.keeper) |
Check warning
Code scanning / CodeQL
Panic in BeginBock or EndBlock consensus methods Warning
|
Lets merge it and then continuing working on this @TropicalDog17 @hoank101 |
No description provided.