Created
December 23, 2013 11:14
-
-
Save brandon-barker/8095386 to your computer and use it in GitHub Desktop.
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
BitnetClient bc = new BitnetClient("http://127.0.0.1:8332"); | |
bc.Credentials = new NetworkCredential("user", "pass"); | |
var p = bc.GetDifficulty(); | |
Console.WriteLine("Difficulty:" + p.ToString()); | |
var inf = bc.GetInfo(); | |
Console.WriteLine("Balance:" + inf["balance"]); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment