style: reformat

This commit is contained in:
swimricky 2023-11-30 15:02:22 -05:00
parent 3be48424b3
commit c380eaadb3
1 changed files with 7 additions and 1 deletions

View File

@ -40,6 +40,10 @@ pub mod v1 {
hashers::keccak256_160::Keccak160,
require,
},
borsh::{
BorshDeserialize,
BorshSerialize,
},
serde::{
Deserialize,
Serialize,
@ -99,7 +103,9 @@ pub mod v1 {
},
}
#[derive(Clone, Debug, Hash, PartialEq, Serialize, Deserialize)]
#[derive(
Clone, Debug, Hash, PartialEq, Serialize, Deserialize, BorshSerialize, BorshDeserialize,
)]
pub struct MerklePriceUpdate {
pub message: PrefixedVec<u16, u8>,
pub proof: MerklePath<Keccak160>,