We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ac8a61 commit 06150afCopy full SHA for 06150af
crates/fuel-core/src/schema/da_compressed.rs
@@ -25,7 +25,7 @@ impl From<Vec<u8>> for DaCompressedBlock {
25
#[Object]
26
impl DaCompressedBlock {
27
async fn bytes(&self) -> HexString {
28
- HexString(self.bytes.clone().into())
+ HexString(self.bytes.as_slice().into())
29
}
30
31
crates/fuel-core/src/schema/tx.rs
@@ -768,7 +768,7 @@ impl<'a> TxStatusSubscription {
768
/// `SubmittedStatus` and potentially preconfirmation as an intermediate state.
769
#[graphql(complexity = "query_costs().submit_and_await + child_complexity")]
770
async fn submit_and_await_status(
771
- &'a self,
+ &self,
772
ctx: &'a Context<'a>,
773
tx: HexString<'a>,
774
estimate_predicates: Option<bool>,
0 commit comments