Skip to content

Commit 2036625

Browse files
authored
fix error string repr (#637)
## 📝 Summary <!--- A general summary of your changes --> ## 💡 Motivation and Context <!--- (Optional) Why is this change required? What problem does it solve? Remove this section if not applicable. --> --- ## ✅ I have completed the following steps: * [ ] Run `make lint` * [ ] Run `make test` * [ ] Added tests (if applicable)
1 parent 5366a02 commit 2036625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/rbuilder/src/primitives/serialize.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -526,7 +526,7 @@ pub struct RawShareBundleMetadatada {
526526

527527
#[derive(Error, Debug)]
528528
pub enum RawShareBundleConvertError {
529-
#[error("Failed to decode transaction, idx: {0}, error: {0}")]
529+
#[error("Failed to decode transaction, idx: {0}, error: {1}")]
530530
FailedToDecodeTransaction(usize, TxWithBlobsCreateError),
531531
#[error("Bundle too deep")]
532532
BundleTooDeep,

0 commit comments

Comments
 (0)