diff --git a/address.py b/address.py index b3f5cc1..ca1979c 100644 --- a/address.py +++ b/address.py @@ -447,10 +447,6 @@ def massTransferWaves(self, transfers, attachment='', timestamp=0,baseFee=0): baseFee = self.pycwaves.DEFAULT_BASE_FEE txFee = baseFee + (math.ceil((len(transfers) + 1) / 2 - 0.5)) * baseFee - - if (asset.isSmart()): - txFee += smartFee - totalAmount = 0 for i in range(0, len(transfers)): @@ -576,8 +572,6 @@ def massTransferAssets(self, transfers, asset, attachment='', timestamp=0,baseFe if smartFee == 0: smartFee = self.pycwaves.DEFAULT_SMART_FEE - if txFee == 0: - txFee = self.pycwaves.DEFAULT_TX_FEE txFee = baseFee + (math.ceil((len(transfers) + 1) / 2 - 0.5)) * baseFee if (asset.isSmart()):