mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-12 03:01:07 +00:00
Fix transaction pool rejection (#10138)
* Fix transaction rejection * Update client/service/src/lib.rs Co-authored-by: Bastian Köcher <bkchr@users.noreply.github.com>
This commit is contained in:
@@ -498,7 +498,7 @@ where
|
||||
fn import(&self, transaction: B::Extrinsic) -> TransactionImportFuture {
|
||||
if !self.imports_external_transactions {
|
||||
debug!("Transaction rejected");
|
||||
Box::pin(futures::future::ready(TransactionImport::None));
|
||||
return Box::pin(futures::future::ready(TransactionImport::None))
|
||||
}
|
||||
|
||||
let encoded = transaction.encode();
|
||||
|
||||
Reference in New Issue
Block a user