Skip to content

Commit df02087

Browse files
authored
docs: fix 404 link in scripts/contrib/devtools/README.md and some struct name (#2156)
Signed-off-by: wangjingcun <[email protected]>
1 parent 04db9cc commit df02087

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

scripts/contrib/devtools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
Thanks to the entire Cosmos SDK team and the contributors who put their efforts into making simulation testing
44
easier to implement. 🤗
55

6-
https://github.com/cosmos/cosmos-sdk/blob/master/contrib/devtools/Makefile
6+
https://github.com/cosmos/cosmos-sdk/blob/main/contrib/devtools/Dockerfile

x/wasm/migrations/v1/store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
// AddToSecondIndexFn creates a secondary index entry for the creator of the contract
1212
type AddToSecondIndexFn func(ctx context.Context, creatorAddress sdk.AccAddress, position *types.AbsoluteTxPosition, contractAddress sdk.AccAddress) error
1313

14-
// Keeper abstract keeper
14+
// wasmKeeper abstract keeper
1515
type wasmKeeper interface {
1616
IterateContractInfo(ctx context.Context, cb func(sdk.AccAddress, types.ContractInfo) bool)
1717
}

x/wasm/migrations/v3/store.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
// StoreCodeInfoFn stores code info
1818
type StoreCodeInfoFn func(ctx context.Context, codeID uint64, codeInfo types.CodeInfo)
1919

20-
// Keeper abstract keeper
20+
// wasmKeeper abstract keeper
2121
type wasmKeeper interface {
2222
SetParams(ctx context.Context, ps types.Params) error
2323
}

0 commit comments

Comments
 (0)