Skip to content
This repository has been archived by the owner on Apr 12, 2022. It is now read-only.

Commit

Permalink
uodate client to v1.0.21, bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
matsakiv committed Dec 25, 2019
1 parent d54efb2 commit d636384
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Atomex.Client.Core
Submodule Atomex.Client.Core updated 36 files
+10 −10 Atomex.Client.Core.Tests/BitcoinBased/BlockchainInfoApiTests.cs
+31 −19 Atomex.Client.Core/Blockchain/BitCore/BitCoreApi.cs
+1 −3 Atomex.Client.Core/Blockchain/BitcoinBased/Helpers/BitcoinBasedSpentPointHelper.cs
+14 −14 Atomex.Client.Core/Blockchain/BlockchainInfo/BlockchainInfoApi.cs
+5 −1 Atomex.Client.Core/Blockchain/Ethereum/CompositeEthereumBlockchainApi.cs
+2 −4 Atomex.Client.Core/Blockchain/Ethereum/EtherScanApi.cs
+3 −3 Atomex.Client.Core/Blockchain/Ethereum/EthereumNonceManager.cs
+8 −8 Atomex.Client.Core/Blockchain/Ethereum/Web3BlockchainApi.cs
+5 −5 Atomex.Client.Core/Blockchain/Helpers/TransactionConfirmationHelper.cs
+17 −18 Atomex.Client.Core/Blockchain/Insight/InsightApi.cs
+15 −24 Atomex.Client.Core/Blockchain/SoChain/SoChainApi.cs
+21 −22 Atomex.Client.Core/Blockchain/Tezos/BabyTzktApi.cs
+10 −10 Atomex.Client.Core/Blockchain/Tezos/TzScanApi.cs
+2 −2 Atomex.Client.Core/Common/HttpHelper.cs
+3 −0 Atomex.Client.Core/Common/Result.cs
+1 −1 Atomex.Client.Core/Core/Error.cs
+26 −0 Atomex.Client.Core/LiteDb/LiteDbAccountDataRepository.cs
+12 −9 Atomex.Client.Core/Swaps/Abstract/CurrencySwap.cs
+60 −13 Atomex.Client.Core/Swaps/BitcoinBased/BitcoinBasedSwap.cs
+1 −1 Atomex.Client.Core/Swaps/BitcoinBased/Helpers/BitcoinBasedSwapSpentHelper.cs
+56 −6 Atomex.Client.Core/Swaps/ClientSwapManager.cs
+56 −7 Atomex.Client.Core/Swaps/Ethereum/EthereumSwap.cs
+31 −29 Atomex.Client.Core/Swaps/Ethereum/Helpers/EthereumSwapInitiatedHelper.cs
+43 −9 Atomex.Client.Core/Swaps/Ethereum/Helpers/EthereumSwapRedeemedHelper.cs
+40 −40 Atomex.Client.Core/Swaps/Ethereum/Helpers/EthereumSwapRefundedHelper.cs
+14 −15 Atomex.Client.Core/Swaps/Tezos/Helpers/TezosSwapInitiatedHelper.cs
+41 −9 Atomex.Client.Core/Swaps/Tezos/Helpers/TezosSwapRedeemedHelper.cs
+39 −4 Atomex.Client.Core/Swaps/Tezos/Helpers/TezosSwapRefundedHelper.cs
+53 −7 Atomex.Client.Core/Swaps/Tezos/TezosSwap.cs
+0 −1 Atomex.Client.Core/Wallet/Abstract/CurrencyAccount.cs
+1 −1 Atomex.Client.Core/Wallet/Abstract/IAccount.cs
+2 −0 Atomex.Client.Core/Wallet/Abstract/IAccountDataRepository.cs
+6 −1 Atomex.Client.Core/Wallet/Account.cs
+119 −32 Atomex.Client.Core/Wallet/Ethereum/EthereumCurrencyAccount.cs
+10 −10 Atomex.Client.Core/Wallet/Tezos/TezosWalletScanner.cs
+6 −6 Atomex.Client.Core/currencies.json
2 changes: 1 addition & 1 deletion Atomex.Client.Wpf.Installer/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<?define Name = "Atomex Client" ?>
<?define Manufacturer = "Atomex.me" ?>
<?define Description = "Multicurrency HD wallet with built-in hybrid exchange based on atomic swap." ?>
<?define Version = "1.0.20" ?>
<?define Version = "1.0.21" ?>
<?define UpgradeCode = "DB7FCF8D-E0C6-4C99-A6B1-3FB6D703F97E" ?>
<?define ExeName = "Atomex.Client.Wpf.exe" ?>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,8 @@ private async Task<Result<string>> GetDelegate(CancellationToken cancellationTok
From = _walletAddress.Address,
To = _address,
Fee = Fee.ToMicroTez(),
Currency = _tezos
Currency = _tezos,
CreationTime = DateTime.UtcNow,
};

try
Expand Down

0 comments on commit d636384

Please sign in to comment.