diff --git a/cmd/eyes/main.go b/cmd/eyes/main.go index 59d750695b..8253ecd2c2 100644 --- a/cmd/eyes/main.go +++ b/cmd/eyes/main.go @@ -8,7 +8,7 @@ import ( "github.com/tendermint/basecoin" "github.com/tendermint/basecoin/cmd/basecoin/commands" "github.com/tendermint/basecoin/modules/base" - "github.com/tendermint/basecoin/modules/etc" + "github.com/tendermint/basecoin/modules/eyes" "github.com/tendermint/basecoin/stack" ) diff --git a/cmd/eyescli/main.go b/cmd/eyescli/main.go index e65a7083ac..86bc156a3c 100644 --- a/cmd/eyescli/main.go +++ b/cmd/eyescli/main.go @@ -15,7 +15,7 @@ import ( rpccmd "github.com/tendermint/basecoin/client/commands/rpc" "github.com/tendermint/basecoin/client/commands/seeds" txcmd "github.com/tendermint/basecoin/client/commands/txs" - etccmd "github.com/tendermint/basecoin/modules/etc/commands" + etccmd "github.com/tendermint/basecoin/modules/eyes/commands" ) // EyesCli - main basecoin client command diff --git a/modules/etc/commands/query.go b/modules/eyes/commands/query.go similarity index 95% rename from modules/etc/commands/query.go rename to modules/eyes/commands/query.go index 4d0a3cfeee..eea6c3d11a 100644 --- a/modules/etc/commands/query.go +++ b/modules/eyes/commands/query.go @@ -10,7 +10,7 @@ import ( "github.com/tendermint/basecoin/client/commands" "github.com/tendermint/basecoin/client/commands/query" - "github.com/tendermint/basecoin/modules/etc" + "github.com/tendermint/basecoin/modules/eyes" "github.com/tendermint/basecoin/stack" ) diff --git a/modules/etc/commands/tx.go b/modules/eyes/commands/tx.go similarity index 96% rename from modules/etc/commands/tx.go rename to modules/eyes/commands/tx.go index d60b790d82..612ed1c5f7 100644 --- a/modules/etc/commands/tx.go +++ b/modules/eyes/commands/tx.go @@ -5,7 +5,7 @@ import ( "github.com/tendermint/basecoin/client/commands" "github.com/tendermint/basecoin/client/commands/txs" - "github.com/tendermint/basecoin/modules/etc" + "github.com/tendermint/basecoin/modules/eyes" ) // SetTxCmd is CLI command to set data diff --git a/modules/etc/errors.go b/modules/eyes/errors.go similarity index 100% rename from modules/etc/errors.go rename to modules/eyes/errors.go diff --git a/modules/etc/handler.go b/modules/eyes/handler.go similarity index 100% rename from modules/etc/handler.go rename to modules/eyes/handler.go diff --git a/modules/etc/handler_test.go b/modules/eyes/handler_test.go similarity index 100% rename from modules/etc/handler_test.go rename to modules/eyes/handler_test.go diff --git a/modules/etc/store.go b/modules/eyes/store.go similarity index 100% rename from modules/etc/store.go rename to modules/eyes/store.go diff --git a/modules/etc/tx.go b/modules/eyes/tx.go similarity index 100% rename from modules/etc/tx.go rename to modules/eyes/tx.go