Remove unused module

This commit is contained in:
Teemu Patja 2017-08-24 18:08:34 +03:00
parent e1e0be115c
commit 122f76cffe
No known key found for this signature in database
GPG Key ID: F5B7035E6580FD4C
1 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
(ns commiteth.eth.erc20
(:require [commiteth.eth.core :as eth]
[clojure.tools.logging :as log]))
(defn balance-of
[token-addr owner-addr]
(let [method-id (eth/sig->method-id "balanceOf(address)")]
(log/debug "erc20.balance-of(token-addr, owner-addr)" token-addr owner-addr)
(eth/call token-addr
method-id
owner-addr)))