Skip to content

Commit d318794

Browse files
Edit explanation comment
This change gives more clear meaning.
1 parent 5b670ae commit d318794

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bitcoin_transfer/private_key.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Private keys are often represented in Base58Check called a **Bitcoin Secret** (a
66

77
```cs
88
Key privateKey = new Key(); // generate a random private key
9-
BitcoinSecret mainNetPrivateKey = privateKey.GetBitcoinSecret(Network.Main); // get our private key for the mainnet
10-
BitcoinSecret testNetPrivateKey = privateKey.GetBitcoinSecret(Network.TestNet); // get our private key for the testnet
9+
BitcoinSecret mainNetPrivateKey = privateKey.GetBitcoinSecret(Network.Main); // generate our Bitcoin secret(also known as Wallet Import Format or simply WIF) from our private key for the mainnet
10+
BitcoinSecret testNetPrivateKey = privateKey.GetBitcoinSecret(Network.TestNet); // generate our Bitcoin secret(also known as Wallet Import Format or simply WIF) from our private key for the testnet
1111
Console.WriteLine(mainNetPrivateKey); // L5B67zvrndS5c71EjkrTJZ99UaoVbMUAK58GKdQUfYCpAa6jypvn
1212
Console.WriteLine(testNetPrivateKey); // cVY5auviDh8LmYUW8AfafseD6p6uFoZrP7GjS3rzAerpRKE9Wmuz
1313

0 commit comments

Comments
 (0)