From 5c004bbb4788062c3535b7e0c80632b96245e7c4 Mon Sep 17 00:00:00 2001 From: Teemu Patja Date: Wed, 7 Jun 2017 16:07:22 +0300 Subject: [PATCH] Fix bug in configurable gas price --- src/clj/commiteth/eth/core.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/commiteth/eth/core.clj b/src/clj/commiteth/eth/core.clj index ab0359f..2209768 100644 --- a/src/clj/commiteth/eth/core.clj +++ b/src/clj/commiteth/eth/core.clj @@ -70,7 +70,7 @@ {:from from :value value} (when-not (nil? (gas-price)) - {:gasPrice gas-price}) + {:gasPrice (gas-price)}) (when-not (contains? params :gas) {:gas (estimate-gas from to value params)}))]