From 85adcf1a63b35d9618cf0f8fc5669e471f28a48f Mon Sep 17 00:00:00 2001 From: Mark Toda Date: Tue, 25 Jun 2019 14:10:05 -0700 Subject: [PATCH] CT-428 Fix ETH Hop tx gas Estimation --- modules/core/src/v2/coins/eth.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/core/src/v2/coins/eth.ts b/modules/core/src/v2/coins/eth.ts index ccf0d8cd6b..15c43a0f8f 100644 --- a/modules/core/src/v2/coins/eth.ts +++ b/modules/core/src/v2/coins/eth.ts @@ -860,6 +860,7 @@ export class Eth extends BaseCoin { const recipientAmount = recipients[0].amount; const feeEstimateParams = { recipient: recipientAddress, + amount: recipientAmount, hop: true, }; const feeEstimate = yield this.feeEstimate(feeEstimateParams);