style: reformat
This commit is contained in:
parent
3be48424b3
commit
c380eaadb3
|
@ -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>,
|
||||
|
|
Loading…
Reference in New Issue