Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
BlaineHeffron committed Jul 17, 2024
1 parent 3174da8 commit e621053
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,11 @@ impl TryInto<GetTransactionsResponse> for GetTransactionsResponseRaw {

fn try_into(self) -> Result<GetTransactionsResponse, Self::Error> {
Ok(GetTransactionsResponse {
transactions: self.transactions.into_iter().map(TryInto::try_into).collect::<Result<Vec<_>,xdr::Error>>()?,
transactions: self
.transactions
.into_iter()
.map(TryInto::try_into)
.collect::<Result<Vec<_>, xdr::Error>>()?,
latest_ledger: self.latest_ledger,
latest_ledger_close_time: self.latest_ledger_close_time,
oldest_ledger: self.oldest_ledger,
Expand Down

0 comments on commit e621053

Please sign in to comment.