]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Rename TrampolineOnionPacket enum comment.
authorArik Sosman <git@arik.io>
Fri, 22 Mar 2024 19:52:42 +0000 (12:52 -0700)
committerArik Sosman <git@arik.io>
Wed, 27 Mar 2024 07:42:31 +0000 (00:42 -0700)
lightning/src/ln/msgs.rs

index 2efc3c1c051798eebcad6fc800502d85ab683659..e454be89b33edb4cb7c1d2c1af0325c2862afb74 100644 (file)
@@ -1798,7 +1798,7 @@ pub struct TrampolineOnionPacket {
        // Unlike the onion packets used for payments, Trampoline onion packets have to be shorter than
        // 1300 bytes. The expected default is 650 bytes.
        // TODO: if 650 ends up being the most common size, optimize this to be:
-       // enum { ThirteenHundred([u8; 650]), VarLen(Vec<u8>) }
+       // enum { SixFifty([u8; 650]), VarLen(Vec<u8>) }
        pub hop_data: Vec<u8>,
        /// HMAC to verify the integrity of hop_data
        pub hmac: [u8; 32],