mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-03-13 14:52:21 +01:00
Worlds smallest optimization
Preallocate for 8 items in the vec. I chose this value for 1. features 2. description 3. payment hash 4. expire time 5. min_final_cltv 6. payment secret 7. route hint 8. for the memes
This commit is contained in:
parent
c93b59e13d
commit
0769b22f5c
1 changed files with 1 additions and 1 deletions
|
@ -550,7 +550,7 @@ impl InvoiceBuilder<tb::False, tb::False, tb::False, tb::False, tb::False, tb::F
|
|||
amount: None,
|
||||
si_prefix: None,
|
||||
timestamp: None,
|
||||
tagged_fields: Vec::new(),
|
||||
tagged_fields: Vec::with_capacity(8),
|
||||
error: None,
|
||||
|
||||
phantom_d: core::marker::PhantomData,
|
||||
|
|
Loading…
Add table
Reference in a new issue