From 5d82f82693942c08e1d732c5ec9b58e79b3c2339 Mon Sep 17 00:00:00 2001 From: Calvin Kim Date: Mon, 19 May 2025 12:29:39 +0900 Subject: [PATCH] bip-0331: correct size of version field in sendpackages Since the version is denoted as uint64, the size should be 8 bytes. --- bip-0331.mediawiki | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bip-0331.mediawiki b/bip-0331.mediawiki index 08927a23..472540c0 100644 --- a/bip-0331.mediawiki +++ b/bip-0331.mediawiki @@ -246,7 +246,7 @@ Four new protocol messages and two inv types are added. {| | Field Name || Type || Size || Purpose |- -|versions || uint64_t || 4 || Bit field that is 64 bits wide, denoting the package versions supported by the sender. +|versions || uint64_t || 8 || Bit field that is 64 bits wide, denoting the package versions supported by the sender. |- |}