From 05d93a18938f5fa50b57390e375fd3a92409c744 Mon Sep 17 00:00:00 2001 From: Vitaliy Vlasov Date: Fri, 13 Apr 2018 17:03:22 +0300 Subject: [PATCH] Remove superfluous logging statement --- src/clj/commiteth/eth/core.clj | 1 - 1 file changed, 1 deletion(-) diff --git a/src/clj/commiteth/eth/core.clj b/src/clj/commiteth/eth/core.clj index 4250153..2f6bfe5 100644 --- a/src/clj/commiteth/eth/core.clj +++ b/src/clj/commiteth/eth/core.clj @@ -65,7 +65,6 @@ (if (= nonce @current-nonce) (throw (Exception. (str "Attempting to create transaction with the same nonce: " nonce))) (swap! current-nonce (constantly nonce))) - (log/info "Current nonce:" nonce) nonce)))) (defn get-signed-tx [gas-price gas-limit to data]