From 0be2b5a184c5496a25f52b7acb0aa56eb13645f5 Mon Sep 17 00:00:00 2001 From: Vitaliy Vlasov Date: Tue, 20 Feb 2018 13:58:28 +0200 Subject: [PATCH] Remove web3j reference --- src/clj/commiteth/eth/multisig_wallet.clj | 5 ++--- src/clj/commiteth/eth/token_registry.clj | 3 +-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/clj/commiteth/eth/multisig_wallet.clj b/src/clj/commiteth/eth/multisig_wallet.clj index f4b7bed..48a42a9 100644 --- a/src/clj/commiteth/eth/multisig_wallet.clj +++ b/src/clj/commiteth/eth/multisig_wallet.clj @@ -1,8 +1,7 @@ (ns commiteth.eth.multisig-wallet - (:require [commiteth.eth.core :as eth] - [commiteth.config :refer [env]] - [commiteth.eth.web3j + (:require [commiteth.eth.core :as eth :refer [create-web3j creds]] + [commiteth.config :refer [env]] [clojure.tools.logging :as log] [commiteth.eth.token-data :as token-data]) (:import [org.web3j diff --git a/src/clj/commiteth/eth/token_registry.clj b/src/clj/commiteth/eth/token_registry.clj index 2d60cc9..9135f8d 100644 --- a/src/clj/commiteth/eth/token_registry.clj +++ b/src/clj/commiteth/eth/token_registry.clj @@ -1,6 +1,5 @@ (ns commiteth.eth.token-registry - (:require [commiteth.eth.core :as eth] - [commiteth.eth.web3j + (:require [commiteth.eth.core :as eth :refer [create-web3j creds]] [commiteth.config :refer [env]] [clojure.tools.logging :as log])