Skip to content

Commit

Permalink
fix: remove unneeded filter
Browse files Browse the repository at this point in the history
  • Loading branch information
willemneal committed Sep 14, 2023
1 parent 320b305 commit 0356a78
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions cmd/soroban-cli/src/rpc/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,7 @@ soroban config identity fund {address} --helper-url <url>"#
.collect::<Result<Vec<_>, _>>()?;
Ok((
assemble(tx, &sim_response)?,
sim_response
.restore_preamble
.filter(|p| !p.transaction_data.is_empty()),
sim_response.restore_preamble,
events,
))
}
Expand Down

0 comments on commit 0356a78

Please sign in to comment.