Created
February 7, 2019 15:56
-
-
Save donma/8c49402f565a5498c74c9bbfa85a4398 to your computer and use it in GitHub Desktop.
Call GetBalance
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Call function from https://gist.github.com/donma/da94fe7a6a57e088aae9be25d5e50a6b | |
decimal confirmsBalance = 0; | |
decimal unConfirmsBalance = 0; | |
GetWalletBalance("mvJh993ZpnVFgX4Bs9jacjFLsKPhXj3nkj", out confirmsBalance, out unConfirmsBalance); | |
Console.WriteLine("Wallet A : " + "mvJh993ZpnVFgX4Bs9jacjFLsKPhXj3nkj"); | |
Console.WriteLine("Confirm Balance : " + confirmsBalance); | |
Console.WriteLine("UnConfirm Balance : " + unConfirmsBalance); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment