From 443fb2752aca300270944aea1cdef961b5d19112 Mon Sep 17 00:00:00 2001 From: Artem Pikulin Date: Tue, 20 Mar 2018 21:10:44 +0700 Subject: [PATCH] Increase default gas limit to 200000 for etomic contracts calls. --- iguana/exchanges/etomicswap/etomiclib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iguana/exchanges/etomicswap/etomiclib.cpp b/iguana/exchanges/etomicswap/etomiclib.cpp index 1fdc5933e..204848477 100644 --- a/iguana/exchanges/etomicswap/etomiclib.cpp +++ b/iguana/exchanges/etomicswap/etomiclib.cpp @@ -26,7 +26,7 @@ TransactionSkeleton txDataToSkeleton(BasicTxData txData) tx.from = jsToAddress(txData.from); tx.to = jsToAddress(txData.to); tx.value = jsToU256(txData.amount); - tx.gas = 100000; + tx.gas = 200000; tx.gasPrice = getGasPriceFromStation() * boost::multiprecision::pow(u256(10), 9); tx.nonce = getNonce(txData.from); return tx;