Skip to content

Commit

Permalink
clippy final fix pls
Browse files Browse the repository at this point in the history
  • Loading branch information
Lilyjjo committed Sep 30, 2024
1 parent 38cd7a4 commit 33c9d44
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/astria-composer/src/executor/bundle_factory/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,11 @@ impl SizedBundle {
.chain_id(chain_id)
.nonce(nonce)
.try_build()
.unwrap()
.expect(
"method is expected to never panic because only `SequenceActions` are added to \
the bundle, which should produce a valid variant of the `ActionGroup` type; this \
is checked by `tests::transaction_construction_should_not_panic",
)
}

/// Buffer `seq_action` into the bundle.
Expand Down

0 comments on commit 33c9d44

Please sign in to comment.