Store pubkey cache uncompressed

This commit is contained in:
Michael Sproul
2022-10-20 23:05:07 +11:00
parent 03fde98737
commit 2350a955e8
4 changed files with 45 additions and 16 deletions

View File

@@ -407,6 +407,7 @@ impl_for_vec!(SmallVec<[T; 5]>, None);
impl_for_vec!(SmallVec<[T; 6]>, None);
impl_for_vec!(SmallVec<[T; 7]>, None);
impl_for_vec!(SmallVec<[T; 8]>, None);
impl_for_vec!(SmallVec<[T; 96]>, None);
impl<K, V> Decode for BTreeMap<K, V>
where

View File

@@ -307,6 +307,7 @@ impl_for_vec!(SmallVec<[T; 5]>);
impl_for_vec!(SmallVec<[T; 6]>);
impl_for_vec!(SmallVec<[T; 7]>);
impl_for_vec!(SmallVec<[T; 8]>);
impl_for_vec!(SmallVec<[T; 96]>);
impl<K, V> Encode for BTreeMap<K, V>
where