From ade9d4527bb381913b5182b5eb04b05c44912b8f Mon Sep 17 00:00:00 2001 From: Ethan Frey Date: Mon, 7 Aug 2017 18:49:03 +0200 Subject: [PATCH] Rename module/etc to eyes as well --- cmd/eyes/main.go | 2 +- cmd/eyescli/main.go | 2 +- modules/{etc => eyes}/commands/query.go | 2 +- modules/{etc => eyes}/commands/tx.go | 2 +- modules/{etc => eyes}/errors.go | 0 modules/{etc => eyes}/handler.go | 0 modules/{etc => eyes}/handler_test.go | 0 modules/{etc => eyes}/store.go | 0 modules/{etc => eyes}/tx.go | 0 9 files changed, 4 insertions(+), 4 deletions(-) rename modules/{etc => eyes}/commands/query.go (95%) rename modules/{etc => eyes}/commands/tx.go (96%) rename modules/{etc => eyes}/errors.go (100%) rename modules/{etc => eyes}/handler.go (100%) rename modules/{etc => eyes}/handler_test.go (100%) rename modules/{etc => eyes}/store.go (100%) rename modules/{etc => eyes}/tx.go (100%) 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