Skip to content

Commit

Permalink
refactor: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ogabrielides committed Mar 7, 2025
1 parent 2009ca8 commit bfe7210
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -190,9 +190,9 @@ where
app_hash: match app_hash.try_into() {
Ok(hash) => hash,
Err(_) => {
return Err(Error::from(
AbciError::StateSyncInternalError("Invalid app_hash length".to_string())
));
return Err(Error::from(AbciError::StateSyncInternalError(
"Invalid app_hash length".to_string(),
)));
}
},
quorum_hash: [0u8; 32],
Expand Down

0 comments on commit bfe7210

Please sign in to comment.