Skip to content

Commit 9298e5c

Browse files
committed
wire: use real peer_storage messages now their format is fixed.
They weren't formatted correctly for bolts/tools/extract-formats.py until this commit, so we had to patch them in manually. Signed-off-by: Rusty Russell <[email protected]>
1 parent 0cd6efe commit 9298e5c

File tree

3 files changed

+5
-19
lines changed

3 files changed

+5
-19
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ CCANDIR := ccan
2626

2727
# Where we keep the BOLT RFCs
2828
BOLTDIR := ../bolts/
29-
DEFAULT_BOLTVERSION := ccfa38ed4f592c3711156bb4ded77f44ec01101d
29+
DEFAULT_BOLTVERSION := 79101063c3e54a563f03eb6047c8c65644408f03
3030
# Can be overridden on cmdline.
3131
BOLTVERSION := $(DEFAULT_BOLTVERSION)
3232

wire/extracted_peer_07_peer_storage.patch

Lines changed: 0 additions & 14 deletions
This file was deleted.

wire/peer_wire.csv

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ msgtype,pong,19
2424
msgdata,pong,byteslen,u16,
2525
msgdata,pong,ignored,byte,byteslen
2626
msgtype,peer_storage,7
27-
msgdata,peer_storage,len,u16,
28-
msgdata,peer_storage,blob,byte,len
27+
msgdata,peer_storage,length,u16,
28+
msgdata,peer_storage,blob,byte,length
2929
msgtype,peer_storage_retrieval,9
30-
msgdata,peer_storage_retrieval,len,u16,
31-
msgdata,peer_storage_retrieval,blob,byte,len
30+
msgdata,peer_storage_retrieval,length,u16,
31+
msgdata,peer_storage_retrieval,blob,byte,length
3232
tlvtype,n1,tlv1,1
3333
tlvdata,n1,tlv1,amount_msat,tu64,
3434
tlvtype,n1,tlv2,2

0 commit comments

Comments
 (0)