summaryrefslogtreecommitdiff
path: root/bip-0130.mediawiki
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@gmail.com>2015-10-23 14:30:43 -0400
committerSuhas Daftuar <sdaftuar@gmail.com>2015-10-23 14:36:42 -0400
commit6721b0b1cb9ca32c5661f1b75d62eb640a9a8e5d (patch)
treea2172de1085b8bb141f028e020febbbff88a0da7 /bip-0130.mediawiki
parentc8c6b251eb709eca652f01e75f93d506ac4cda4c (diff)
downloadbips-6721b0b1cb9ca32c5661f1b75d62eb640a9a8e5d.tar.xz
Update with assigned BIP number (130)
Diffstat (limited to 'bip-0130.mediawiki')
-rw-r--r--bip-0130.mediawiki47
1 files changed, 47 insertions, 0 deletions
diff --git a/bip-0130.mediawiki b/bip-0130.mediawiki
new file mode 100644
index 0000000..56184e3
--- /dev/null
+++ b/bip-0130.mediawiki
@@ -0,0 +1,47 @@
+<pre>
+ BIP: 130
+ Title: sendheaders message
+ Author: Suhas Daftuar <sdaftuar@chaincode.com>
+ Status: Draft
+ Type: Standards Track
+ Created: 2015-05-08
+</pre>
+
+==Abstract==
+
+Add a new message, "sendheaders", which indicates that a node prefers to receive new block announcements via a "headers" message rather than an "inv".
+
+==Motivation==
+
+Since the introduction of "headers-first" downloading of blocks in 0.10, blocks will not be processed unless
+they are able to connect to a (valid) headers chain. Consequently, block relay generally works
+as follows:
+# A node (N) announces the new tip with an "inv" message, containing the block hash
+# A peer (P) responds to the "inv" with a "getheaders" message (to request headers up to the new tip) and a "getdata" message for the new tip itself
+# N responds with a "headers" message (with the header for the new block along with any preceding headers unknown to P) and a "block" message containing the new block
+
+However, in the case where a new block is being announced that builds on the tip, it would be generally more efficient if the node N just announced the block header for the new block, rather than just the block hash, and saved the peer from generating and transmitting the getheaders message (and the required block locator).
+
+In the case of a reorg, where 1 or more blocks are disconnected, nodes currently just send an "inv" for the new tip. Peers currently are able to request the new tip immediately, but wait until the headers for the intermediate blocks are delivered before requesting those blocks. By announcing headers from the last fork point leading up to the new tip in the block announcement, peers are able to request all the intermediate blocks immediately.
+
+==Specification==
+
+# The sendheaders message is defined as an empty message where pchCommand == "sendheaders"
+# Upon receipt of a "sendheaders" message, the node will be permitted, but not required, to announce new blocks by sending the header of the new block (along with any other blocks that a node believes a peer might need in order for the block to connect).
+# Feature discovery is enabled by checking protocol version >= 70012
+
+==Additional constraints==
+
+As support for sendheaders is optional, software that implements this may also optionally impose additional constraints, such as only honoring sendheaders messages shortly after a connection is established.
+
+==Backward compatibility==
+
+Older clients remain fully compatible and interoperable after this change.
+
+==Implementation==
+
+https://github.com/bitcoin/bitcoin/pull/6494
+
+==Copyright==
+
+This document is placed in the public domain.