Skip to content

Commit 8e833a2

Browse files
committed
minor edits
1 parent 113e20a commit 8e833a2

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

09_00_mutable_references.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 9.0 Mutable References
1+
# Mutable References
22

33
So in the previous section, we were able to read the version by `read`ing the first 4 bytes and converting that into a u32 integer. However, we want to keep track of where we are in the transaction so that we can continue to do decode it. In order to do that we'll want to pass in the bytes slice to the `read_version` function and then continue using it in the `main` function.
44

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ It's not as difficult as you might think. It just takes some time to get familia
2020
By the end of this project, you will have understood the fundamental concepts of Rust such as types, data structures, references, stack and the heap, traits, error handling and more. We will also review some basic aspects of the Bitcoin protocol, specifically the components of a transaction. In future courses, we will dive deeper into the Bitcoin protocol and write more complex programs, exploring the full extent of Bitcoin's capabilities.
2121

2222
### Table of Contents
23-
* [1.0: Project Overview: Decoding Raw Transactions](01_background.md)
23+
* [1.0: Project Overview](01_project_overview.md)
2424
* [2.0: Setup](02_setup.md)
2525
* [3.0: Our First Function](03_our_first_function.md)
2626
* [4.0: Hex and Bytes](04_hex_and_bytes.md)

0 commit comments

Comments
 (0)