Skip to content

Commit 037682e

Browse files
committed
fmt
1 parent f448dc6 commit 037682e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

sysvar/src/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,7 @@ pub trait SysvarGet: Default + Sized {
159159

160160
#[cfg(feature = "bincode")]
161161
/// A type that holds sysvar data.
162-
pub trait Sysvar:
163-
SysvarGet + SysvarId + serde::Serialize + serde::de::DeserializeOwned
164-
{
162+
pub trait Sysvar: SysvarGet + SysvarId + serde::Serialize + serde::de::DeserializeOwned {
165163
/// The size in bytes of the sysvar as serialized account data.
166164
fn size_of() -> usize {
167165
bincode::serialized_size(&Self::default()).unwrap() as usize

0 commit comments

Comments
 (0)