File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ This is a common cause of confusion when learning the Bitcoin protocol: bytes se
63
63
64
64
So, the version 1 field will be sent in the following order: ` 01 ` followed by three ` 00 ` s.
65
65
` 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.
67
67
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.
68
68
69
69
Now, we can do our normal base math which is ` 0* 16^7 + ... + 1 * 16^0 ` .
You can’t perform that action at this time.
0 commit comments