Skip to content

Commit fcb64c7

Browse files
authored
Merge pull request #38 from jsahagun91/patch-1
Update 04_hex_and_bytes.md
2 parents 1cb95ea + d0e5aa0 commit fcb64c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

04_hex_and_bytes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ This is a common cause of confusion when learning the Bitcoin protocol: bytes se
6363

6464
So, the version 1 field will be sent in the following order: `01` followed by three `00`s.
6565
`01` is the least significant byte and is sent first.
66-
When doing base math to convert these bytes to integers, we can canceptualize it in reverse so that the `01` is in the least significant position.
66+
When doing base math to convert these bytes to integers, we can conceptualize it in reverse so that the `01` is in the least significant position.
6767
In other words, we can think of it as `00 00 00 01` and then do our normal base 16 math to convert this to an integer.
6868

6969
Now, we can do our normal base math which is `0* 16^7 + ... + 1 * 16^0`.

0 commit comments

Comments
 (0)