Skip to content

Commit 9df9904

Browse files
committed
Remove ':note:', it does not render in markdown
1 parent 8046757 commit 9df9904

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

09_3_Testing_a_Bitcoin_Script.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ script | stack
9898
```
9999
And that's where our script ends, with nothing more to execute and a `03` sitting on top of our stack as the result of the Script.
100100

101-
> :note: **NOTE:** `btcdeb` allows you to repeat the previous command by hitting enter. We will be doing this in subsequent examples, so don't be surprised about `btcdeb>` prompts with nothing as input. It is simply repeating the previous (often `step`) command.
101+
> **NOTE:** `btcdeb` allows you to repeat the previous command by hitting enter. We will be doing this in subsequent examples, so don't be surprised about `btcdeb>` prompts with nothing as input. It is simply repeating the previous (often `step`) command.
102102
103103
### Use btcdeb for a Subtraction Example
104104

16_2_Using_BIP39_in_Libwally.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This example, which will be the only way we use the `libsodium` library, creates
4949
```
5050
Note that you have to pass along the byte size, so if you were to increase the size of your entropy, to generate a longer mnemonic phrase, you'd also need to increase the value in this function.
5151

52-
> :note: **NOTE:** There are mnemonic word lists for different languages! The default is to use the English-language list, which is the `NULL` variable in these Libwally mnemonic commands, but you can alternatively request a different language!
52+
> **NOTE:** There are mnemonic word lists for different languages! The default is to use the English-language list, which is the `NULL` variable in these Libwally mnemonic commands, but you can alternatively request a different language!
5353
5454
That's it! You've created a mnemonic phrase!
5555

16_5_Using_Scripts_in_Libwally.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ As you might expect, you then add that input to your transaction:
9898
lw_response = wally_tx_add_input(tx,tx_input);
9999
```
100100

101-
> :note: **NOTE** Obviously, you'll want to be able to create your own inputs if you're using Libwally for real applications, but this is intended as a first step. And, it can actually be useful for integrating with `bitcoin-cli`, as we'll see in [§16.7](16_7_Integrating_Libwally_and_Bitcoin-CLI.md).
101+
> **NOTE** Obviously, you'll want to be able to create your own inputs if you're using Libwally for real applications, but this is intended as a first step. And, it can actually be useful for integrating with `bitcoin-cli`, as we'll see in [§16.7](16_7_Integrating_Libwally_and_Bitcoin-CLI.md).
102102
103103
### Print a Transaction
104104

17_1_Accessing_Bitcoind_with_Go.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Every `bitcoind` function in Go begins with creating the RPC connection, using t
126126
```
127127
The ```connCfg``` parameters allow you to choose the Bitcoin RPC port, username, password and whether you are on testnet or mainnet.
128128

129-
> :note: **NOTE:** Again, be sure to substitute the `User` and `Pass` with the one found in your `~/.bitcoin/bitcon.conf`.
129+
> **NOTE:** Again, be sure to substitute the `User` and `Pass` with the one found in your `~/.bitcoin/bitcon.conf`.
130130
131131
The```rpcclient.New(connCfg, nil)``` function then configures ```client``` to connect to your Bitcoin node.
132132

@@ -268,7 +268,7 @@ The defaultNet variable is now used to specify whether your Bitcoin node is on t
268268
}
269269
```
270270

271-
> :note: **NOTE:** Change the address (`mpGpCMX6SuUimDZKiVViuhd7EGyVxkNnha`) for one actually your wallet; you can use `bitcoin-cli listunspent` to find some addresses with funds for this test. If you want to be really fancy, modify the Go code to take an argument, then write a script that runs `listunspent`, saves the info to a variable, and runs the Go code on that.
271+
> **NOTE:** Change the address (`mpGpCMX6SuUimDZKiVViuhd7EGyVxkNnha`) for one actually your wallet; you can use `bitcoin-cli listunspent` to find some addresses with funds for this test. If you want to be really fancy, modify the Go code to take an argument, then write a script that runs `listunspent`, saves the info to a variable, and runs the Go code on that.
272272
273273
Only afterward do you use the `getreceivedbyaddress` RPC, on your decoded address:
274274
```
@@ -378,7 +378,7 @@ func main() {
378378
fmt.Println(transactions)
379379
}
380380
```
381-
> :note: **NOTE:** Again, you'll want to change out the txid for one actually recognized by your system.
381+
> **NOTE:** Again, you'll want to change out the txid for one actually recognized by your system.
382382
383383
When you run [the code](17_1_lookuptransaction.go) it will print out the details associated with a transaction, such as its amount and how many times it has been confirmed:
384384

17_5_Accessing_Bitcoind_with_Rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ Here's the complete code to retrieve a block hash, turn that into a block, and p
131131
println!("{:?}", block);
132132
```
133133

134-
> :note: **NOTE:** Another possible call that we considered for this section was `get_address_info`, but unfortunately as of this writing, the `bitcoincore-rpc` function doesn't work with recent versions of Bitcoin Core due to the crate not addressing the latest API changes in Bitcoin Core. We expect this will be solved in the next crate's release, but in the meantime, _caveat programmer_.
134+
> **NOTE:** Another possible call that we considered for this section was `get_address_info`, but unfortunately as of this writing, the `bitcoincore-rpc` function doesn't work with recent versions of Bitcoin Core due to the crate not addressing the latest API changes in Bitcoin Core. We expect this will be solved in the next crate's release, but in the meantime, _caveat programmer_.
135135
136136
### Run Your Code
137137

0 commit comments

Comments
 (0)