Skip to content

Commit ed99330

Browse files
committed
fix typo
1 parent cd6c12b commit ed99330

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

packages/fuels-core/src/types/transaction_builders.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -846,7 +846,7 @@ impl ScriptTransactionBuilder {
846846
_ => {
847847
return Err(error_transaction!(
848848
Builder,
849-
"`asseble_tx` did not return the right transactio type. Expected `script`"
849+
"`asseble_tx` did not return the right transaction type. Expected `script`"
850850
));
851851
}
852852
};
@@ -1276,7 +1276,7 @@ impl CreateTransactionBuilder {
12761276
_ => {
12771277
return Err(error_transaction!(
12781278
Builder,
1279-
"`asseble_tx` did not return the right transactio type. Expected `create`"
1279+
"`asseble_tx` did not return the right transaction type. Expected `create`"
12801280
));
12811281
}
12821282
};
@@ -1480,7 +1480,7 @@ impl UploadTransactionBuilder {
14801480
_ => {
14811481
return Err(error_transaction!(
14821482
Builder,
1483-
"`asseble_tx` did not return the right transactio type. Expected `upload`"
1483+
"`asseble_tx` did not return the right transaction type. Expected `upload`"
14841484
));
14851485
}
14861486
};
@@ -1687,7 +1687,7 @@ impl UpgradeTransactionBuilder {
16871687
_ => {
16881688
return Err(error_transaction!(
16891689
Builder,
1690-
"`asseble_tx` did not return the right transactio type. Expected `upgrade`"
1690+
"`asseble_tx` did not return the right transaction type. Expected `upgrade`"
16911691
));
16921692
}
16931693
};

packages/fuels-core/src/types/transaction_builders/blob.rs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ use std::{fmt::Debug, iter::repeat, sync::Arc};
33
use async_trait::async_trait;
44
use fuel_crypto::Signature;
55
use fuel_tx::{
6-
field::{MaxFeeLimit, Policies as PoliciesField, WitnessLimit, Witnesses}, policies::{Policies, PolicyType}, BlobIdExt, Chargeable, ConsensusParameters, Output, Transaction as FuelTransaction, UniqueIdentifier, Witness
6+
BlobIdExt, Chargeable, ConsensusParameters, Output, Transaction as FuelTransaction,
7+
UniqueIdentifier, Witness,
8+
field::{MaxFeeLimit, Policies as PoliciesField, WitnessLimit, Witnesses},
9+
policies::{Policies, PolicyType},
710
};
811
use fuel_types::bytes::padded_len_usize;
912
use itertools::Itertools;
@@ -222,7 +225,7 @@ impl BlobTransactionBuilder {
222225
_ => {
223226
return Err(error_transaction!(
224227
Builder,
225-
"`asseble_tx` did not return the right transactio type. Expected `blob`"
228+
"`asseble_tx` did not return the right transaction type. Expected `blob`"
226229
));
227230
}
228231
};

0 commit comments

Comments
 (0)