fixed package name

This commit is contained in:
Sunny Aggarwal 2018-03-29 06:40:06 +02:00
parent 81d542d438
commit bc1d9e6f93
9 changed files with 11 additions and 11 deletions

View File

@ -15,7 +15,7 @@ import (
"github.com/cosmos/cosmos-sdk/x/auth"
"github.com/cosmos/cosmos-sdk/x/bank"
"github.com/cosmos/cosmos-sdk/x/ibc"
simplestake "github.com/cosmos/cosmos-sdk/x/simplestake"
"github.com/cosmos/cosmos-sdk/x/simplestake"
"github.com/cosmos/cosmos-sdk/examples/basecoin/types"
"github.com/cosmos/cosmos-sdk/examples/basecoin/x/cool"

View File

@ -13,7 +13,7 @@ import (
"github.com/cosmos/cosmos-sdk/client/builder"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/wire"
simplestake "github.com/cosmos/cosmos-sdk/x/simplestake"
"github.com/cosmos/cosmos-sdk/x/simplestake"
)
const (

View File

@ -1,11 +1,11 @@
package staking
package simplestake
import (
sdk "github.com/cosmos/cosmos-sdk/types"
)
const (
// Staking errors reserve 300 - 399.
// simplestake errors reserve 300 - 399.
CodeEmptyValidator sdk.CodeType = 300
CodeInvalidUnbond sdk.CodeType = 301
CodeEmptyStake sdk.CodeType = 302

View File

@ -1,4 +1,4 @@
package staking
package simplestake
import (
abci "github.com/tendermint/abci/types"
@ -6,7 +6,7 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
)
// NewHandler returns a handler for "bank" type messages.
// NewHandler returns a handler for "simplestake" type messages.
func NewHandler(k Keeper) sdk.Handler {
return func(ctx sdk.Context, msg sdk.Msg) sdk.Result {
switch msg := msg.(type) {

View File

@ -1,4 +1,4 @@
package staking
package simplestake
import (
crypto "github.com/tendermint/go-crypto"

View File

@ -1,4 +1,4 @@
package staking
package simplestake
import (
"fmt"

View File

@ -1,4 +1,4 @@
package staking
package simplestake
import (
"encoding/json"

View File

@ -1,4 +1,4 @@
package staking
package simplestake
import (
"testing"

View File

@ -1,4 +1,4 @@
package staking
package simplestake
import crypto "github.com/tendermint/go-crypto"