diff options
author | Sonic <sonic@cobinhood.com> | 2018-09-19 18:56:06 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@byzantine-lab.io> | 2019-06-12 17:21:31 +0800 |
commit | bd3f617267be4b6879285d1ebf97eceb501e3bea (patch) | |
tree | 1ebe74f01a4d6f69d057056c482503205f853e11 | |
parent | 4dc829780c3bf1dcfc097a0f176d0df3f221f028 (diff) | |
download | go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.tar go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.tar.gz go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.tar.bz2 go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.tar.lz go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.tar.xz go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.tar.zst go-tangerine-bd3f617267be4b6879285d1ebf97eceb501e3bea.zip |
Change package name from eth to dex
-rw-r--r-- | dex/config.go | 2 | ||||
-rw-r--r-- | dex/handler.go | 2 | ||||
-rw-r--r-- | dex/helper_test.go | 2 | ||||
-rw-r--r-- | dex/metrics.go | 2 | ||||
-rw-r--r-- | dex/peer.go | 2 | ||||
-rw-r--r-- | dex/protocol.go | 2 | ||||
-rw-r--r-- | dex/protocol_test.go | 2 | ||||
-rw-r--r-- | dex/sync.go | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/dex/config.go b/dex/config.go index 375fbcc3c..629e29120 100644 --- a/dex/config.go +++ b/dex/config.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "math/big" diff --git a/dex/handler.go b/dex/handler.go index 9f4522627..b9a354f42 100644 --- a/dex/handler.go +++ b/dex/handler.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "encoding/json" diff --git a/dex/helper_test.go b/dex/helper_test.go index 3d2ab0aba..13d2bbaec 100644 --- a/dex/helper_test.go +++ b/dex/helper_test.go @@ -17,7 +17,7 @@ // This file contains some shares testing functionality, common to multiple // different files and modules being tested. -package eth +package dex import ( "crypto/ecdsa" diff --git a/dex/metrics.go b/dex/metrics.go index 0533a2a87..8d923ed70 100644 --- a/dex/metrics.go +++ b/dex/metrics.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "github.com/ethereum/go-ethereum/metrics" diff --git a/dex/peer.go b/dex/peer.go index b5f450855..f955b531d 100644 --- a/dex/peer.go +++ b/dex/peer.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "errors" diff --git a/dex/protocol.go b/dex/protocol.go index 0e90e6a2e..de6354717 100644 --- a/dex/protocol.go +++ b/dex/protocol.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "fmt" diff --git a/dex/protocol_test.go b/dex/protocol_test.go index aa43dfa92..1a3d7b124 100644 --- a/dex/protocol_test.go +++ b/dex/protocol_test.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "fmt" diff --git a/dex/sync.go b/dex/sync.go index e49e40087..9c070e36f 100644 --- a/dex/sync.go +++ b/dex/sync.go @@ -14,7 +14,7 @@ // You should have received a copy of the GNU Lesser General Public License // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. -package eth +package dex import ( "math/rand" |