You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bitcoin_transfer/private_key.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -6,8 +6,8 @@ Private keys are often represented in Base58Check called a **Bitcoin Secret** (a
6
6
7
7
```cs
8
8
KeyprivateKey=newKey(); // generate a random private key
9
-
BitcoinSecretmainNetPrivateKey=privateKey.GetBitcoinSecret(Network.Main); //get our private key for the mainnet
10
-
BitcoinSecrettestNetPrivateKey=privateKey.GetBitcoinSecret(Network.TestNet); //get our private key for the testnet
9
+
BitcoinSecretmainNetPrivateKey=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
+
BitcoinSecrettestNetPrivateKey=privateKey.GetBitcoinSecret(Network.TestNet); //generate our Bitcoin secret(also known as Wallet Import Format or simply WIF) from our private key for the testnet
0 commit comments