-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
renamed files only used in tests and updated the main_querier
- Loading branch information
1 parent
5856479
commit 988f852
Showing
3 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,9 @@ func MockCookbook(tci keep.TestCoinInput, sender sdk.AccAddress) CreateCBRespons | |
func MockCookbookByName(tci keep.TestCoinInput, sender sdk.AccAddress, cookbookName string) CreateCBResponse { | ||
cookbookDesc := "this has to meet character limits" | ||
msg := msgs.NewMsgCreateCookbook(cookbookName, "", cookbookDesc, "SketchyCo", "1.0.0", "[email protected]", 1, msgs.DefaultCostPerBlock, sender) | ||
cbResult, _ := HandlerMsgCreateCookbook(tci.Ctx, tci.PlnK, msg) | ||
cbResult, err := HandlerMsgCreateCookbook(tci.Ctx, tci.PlnK, msg) | ||
if err != nil { | ||
} | ||
cbData := CreateCBResponse{} | ||
json.Unmarshal(cbResult.Data, &cbData) | ||
return cbData | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters