Update code to master

This commit is contained in:
Ethan Frey
2019-11-22 17:17:10 +01:00
parent d87acdcf2d
commit 6ddd637733
2 changed files with 9 additions and 9 deletions

View File

@@ -2,17 +2,17 @@ package client
import (
"bufio"
"strconv"
// "strconv"
"io/ioutil"
"github.com/spf13/cobra"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/context"
"github.com/cosmos/cosmos-sdk/client/utils"
"github.com/cosmos/cosmos-sdk/codec"
sdk "github.com/cosmos/cosmos-sdk/types"
auth "github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/auth/client/utils"
"github.com/cosmwasm/wasmd/x/wasm/internal/types"
)
@@ -25,11 +25,11 @@ const (
// GetTxCmd returns the transaction commands for this module
func GetTxCmd(cdc *codec.Codec) *cobra.Command {
txCmd := &cobra.Command{
Use: types.ModuleName,
Short: "Wasm transaction subcommands",
Use: types.ModuleName,
Short: "Wasm transaction subcommands",
DisableFlagParsing: true,
SuggestionsMinimumDistance: 2,
RunE: utils.ValidateCmd,
RunE: client.ValidateCmd,
}
txCmd.AddCommand(
StoreCodeCmd(cdc),

View File

@@ -4,7 +4,7 @@ import (
wasmTypes "github.com/confio/go-cosmwasm/types"
"github.com/cosmos/cosmos-sdk/store/prefix"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth"
auth "github.com/cosmos/cosmos-sdk/x/auth/exported"
)
// CodeInfo is data for the uploaded contract WASM code
@@ -73,8 +73,8 @@ func NewContract(codeID uint64, creator sdk.AccAddress, initMsg []byte, prefixSt
// CosmosResult converts from a Wasm Result type
func CosmosResult(wasmResult wasmTypes.Result) sdk.Result {
return sdk.Result{
Data: []byte(wasmResult.Data),
Log: wasmResult.Log,
Data: []byte(wasmResult.Data),
Log: wasmResult.Log,
GasUsed: wasmResult.GasUsed,
}
}