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

Commit

Permalink
Fix: FA12/FA2 tokens balances
Browse files Browse the repository at this point in the history
  • Loading branch information
matsakiv committed Aug 23, 2021
1 parent fb5675c commit 0d88eff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
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.1.1" ?>
<?define Version = "1.1.2" ?>
<?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 @@ -735,9 +735,10 @@ protected void DesignerMode()

var bcdApi = new BcdApi(new BcdApiSettings
{
MaxSize = 10,
Network = "mainnet",
Uri = "https://api.better-call.dev/v1/"
MaxSize = 10,
MaxTokensSize = 50,
Network = "mainnet",
Uri = "https://api.better-call.dev/v1/"
});

var address = "tz1YS2CmS5o24bDz9XNr84DSczBXuq4oGHxr";
Expand Down

0 comments on commit 0d88eff

Please sign in to comment.