<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andyparkins</id>
	<title>Bitcoin Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://en.bitcoin.it/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Andyparkins"/>
	<link rel="alternate" type="text/html" href="https://en.bitcoin.it/wiki/Special:Contributions/Andyparkins"/>
	<updated>2026-05-06T22:48:50Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:BIP_0013&amp;diff=20624</id>
		<title>Talk:BIP 0013</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:BIP_0013&amp;diff=20624"/>
		<updated>2011-12-09T11:49:07Z</updated>

		<summary type="html">&lt;p&gt;Andyparkins: Comment on &amp;quot;version&amp;quot; nomenclature&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Personally, I don&#039;t like the nomenclature &amp;quot;version&amp;quot;.  It&#039;s signalling far more than just a version.  How about &amp;quot;address class&amp;quot;?&lt;br /&gt;
--[[User:Andyparkins|Andyparkins]] 11:49, 9 December 2011 (GMT)&lt;/div&gt;</summary>
		<author><name>Andyparkins</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:BIP_0014&amp;diff=20623</id>
		<title>Talk:BIP 0014</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:BIP_0014&amp;diff=20623"/>
		<updated>2011-12-09T11:45:48Z</updated>

		<summary type="html">&lt;p&gt;Andyparkins: Comment on non-incremental git commitish workaround&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Just as a point of information; &amp;quot;git describe&amp;quot; output solves the problem of non-incremental committish.  It does this by providing a base version code (the most recent tag name) the number of commits past that tag and then a little bit of the commitish for the revision in question.&lt;br /&gt;
--[[User:Andyparkins|Andyparkins]] 11:45, 9 December 2011 (GMT)&lt;/div&gt;</summary>
		<author><name>Andyparkins</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Protocol_documentation&amp;diff=8015</id>
		<title>Talk:Protocol documentation</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Protocol_documentation&amp;diff=8015"/>
		<updated>2011-05-04T12:52:59Z</updated>

		<summary type="html">&lt;p&gt;Andyparkins: Magic numbers are wrong&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m adding some hexdumps of messages and data structures and descriptions of how these are interpreted in order to help others understand these protocol and data structures.  It&#039;s a bit redundant, so any ideas as to how to remove some of the redundancy while keeping the knowledge accessible are welcome (feel free to make the changes yourself!). -- [[User:X6763|X6763]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is the checksum in the addr sample correct?  Here&#039;s what I get using OpenSSL (sorry for long lines):&lt;br /&gt;
SHA256(&amp;quot;\x01\xe2\x15\x10\x4d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x0a\x00\x00\x01\x20\x8d&amp;quot;) = &lt;br /&gt;
d6 88 65 c8 20 61 d5 e2 54 52 b5 5b 52 17 98 b1 11 50 85 96 2e 49 e8 fd da b7 f4 fb a3 9c d8 2c&lt;br /&gt;
and SHA256 of that is&lt;br /&gt;
ed 52 39 9b 56 8e d8 d5 9a 83 72 9c 11 6f 87 d0 be f2 84 e9 98 f3 47 7c 98 61 16 9a b1 2e ed 5c&lt;br /&gt;
It could easily be I&#039;m using OpenSSL incorrectly, so wanted to get confirmation -- [[User:AndyParkins|AndyParkins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The description for the headers command says &amp;quot;77x?&amp;quot; as the size for the block_headers[] returned.  However, the description of the block_header structure is 81 bytes (4+32+32+4+4+4+1).  What exactly is returned by the headers command? -- [[User:AndyParkins|AndyParkins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The given magic numbers are the wrong way around.  The magic numbers are little endian 32 bit numbers on the network, so Testnet.Magic = 0xdab5bffa and Prodnet.Magic = 0xd9b4bef9.  The two examples are the order they come in from the wire, so at the very least should be shown with spaces between the bytes.&lt;br /&gt;
[[User:AndyParkins|AndyParkins]]&lt;/div&gt;</summary>
		<author><name>Andyparkins</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Protocol_documentation&amp;diff=7534</id>
		<title>Talk:Protocol documentation</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Protocol_documentation&amp;diff=7534"/>
		<updated>2011-04-21T11:18:10Z</updated>

		<summary type="html">&lt;p&gt;Andyparkins: Question inconsistency between headers description and block_header description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m adding some hexdumps of messages and data structures and descriptions of how these are interpreted in order to help others understand these protocol and data structures.  It&#039;s a bit redundant, so any ideas as to how to remove some of the redundancy while keeping the knowledge accessible are welcome (feel free to make the changes yourself!). -- [[User:X6763|X6763]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Is the checksum in the addr sample correct?  Here&#039;s what I get using OpenSSL (sorry for long lines):&lt;br /&gt;
SHA256(&amp;quot;\x01\xe2\x15\x10\x4d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x0a\x00\x00\x01\x20\x8d&amp;quot;) = &lt;br /&gt;
d6 88 65 c8 20 61 d5 e2 54 52 b5 5b 52 17 98 b1 11 50 85 96 2e 49 e8 fd da b7 f4 fb a3 9c d8 2c&lt;br /&gt;
and SHA256 of that is&lt;br /&gt;
ed 52 39 9b 56 8e d8 d5 9a 83 72 9c 11 6f 87 d0 be f2 84 e9 98 f3 47 7c 98 61 16 9a b1 2e ed 5c&lt;br /&gt;
It could easily be I&#039;m using OpenSSL incorrectly, so wanted to get confirmation -- [[User:AndyParkins|AndyParkins]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The description for the headers command says &amp;quot;77x?&amp;quot; as the size for the block_headers[] returned.  However, the description of the block_header structure is 81 bytes (4+32+32+4+4+4+1).  What exactly is returned by the headers command? -- [[User:AndyParkins|AndyParkins]]&lt;/div&gt;</summary>
		<author><name>Andyparkins</name></author>
	</entry>
	<entry>
		<id>https://en.bitcoin.it/w/index.php?title=Talk:Protocol_documentation&amp;diff=7523</id>
		<title>Talk:Protocol documentation</title>
		<link rel="alternate" type="text/html" href="https://en.bitcoin.it/w/index.php?title=Talk:Protocol_documentation&amp;diff=7523"/>
		<updated>2011-04-20T10:22:29Z</updated>

		<summary type="html">&lt;p&gt;Andyparkins: Query addr checksum&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;m adding some hexdumps of messages and data structures and descriptions of how these are interpreted in order to help others understand these protocol and data structures.  It&#039;s a bit redundant, so any ideas as to how to remove some of the redundancy while keeping the knowledge accessible are welcome (feel free to make the changes yourself!). -- [[User:X6763|X6763]]&lt;br /&gt;
&lt;br /&gt;
Is the checksum in the addr sample correct?  Here&#039;s what I get using OpenSSL (sorry for long lines):&lt;br /&gt;
SHA256(&amp;quot;\x01\xe2\x15\x10\x4d\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xff\xff\x0a\x00\x00\x01\x20\x8d&amp;quot;) = &lt;br /&gt;
d6 88 65 c8 20 61 d5 e2 54 52 b5 5b 52 17 98 b1 11 50 85 96 2e 49 e8 fd da b7 f4 fb a3 9c d8 2c&lt;br /&gt;
and SHA256 of that is&lt;br /&gt;
ed 52 39 9b 56 8e d8 d5 9a 83 72 9c 11 6f 87 d0 be f2 84 e9 98 f3 47 7c 98 61 16 9a b1 2e ed 5c&lt;br /&gt;
... I have a similar fault in the tx sample, but one at a time ;-) It could easily be I&#039;m using OpenSSL incorrectly, so wanted to get confirmation -- [[User:AndyParkins|AndyParkins]]&lt;/div&gt;</summary>
		<author><name>Andyparkins</name></author>
	</entry>
</feed>