Remove superfluous logging statement

This commit is contained in:
Vitaliy Vlasov 2018-04-13 17:03:22 +03:00 committed by Tetiana Churikova
parent 24e39ad867
commit 05d93a1893

View File

@ -65,7 +65,6 @@
(if (= nonce @current-nonce) (if (= nonce @current-nonce)
(throw (Exception. (str "Attempting to create transaction with the same nonce: " nonce))) (throw (Exception. (str "Attempting to create transaction with the same nonce: " nonce)))
(swap! current-nonce (constantly nonce))) (swap! current-nonce (constantly nonce)))
(log/info "Current nonce:" nonce)
nonce)))) nonce))))
(defn get-signed-tx [gas-price gas-limit to data] (defn get-signed-tx [gas-price gas-limit to data]