From 14bce321c6755914c16b3b6a1a44eccd4c684f40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ferit=20Tun=C3=A7er?= Date: Mon, 21 Jan 2019 13:58:03 +0300 Subject: [PATCH] fix(multiple-arbitrable-transaction): send instead of transfer to avoid blocking --- .../standard/arbitration/MultipleArbitrableTransaction.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/standard/arbitration/MultipleArbitrableTransaction.sol b/contracts/standard/arbitration/MultipleArbitrableTransaction.sol index 3083f1e8..513e82e2 100644 --- a/contracts/standard/arbitration/MultipleArbitrableTransaction.sol +++ b/contracts/standard/arbitration/MultipleArbitrableTransaction.sol @@ -1,6 +1,6 @@ /** * @authors: [@eburgos, @n1c01a5] - * @reviewers: [@unknownunknown1, @clesaege*, @ferittuncer] + * @reviewers: [@unknownunknown1*, @clesaege*, @ferittuncer] * @auditors: [] * @bounties: [] * @deployments: [] @@ -260,14 +260,14 @@ contract MultipleArbitrableTransaction { if (transaction.sellerFee > _arbitrationCost) { uint extraFeeSeller = transaction.sellerFee - _arbitrationCost; transaction.sellerFee = _arbitrationCost; - transaction.seller.transfer(extraFeeSeller); + transaction.seller.send(extraFeeSeller); } // Refund buyer if it overpaid. if (transaction.buyerFee > _arbitrationCost) { uint extraFeeBuyer = transaction.buyerFee - _arbitrationCost; transaction.buyerFee = _arbitrationCost; - transaction.buyer.transfer(extraFeeBuyer); + transaction.buyer.send(extraFeeBuyer); } }