Skip to content

Commit 084de6b

Browse files
authored
Fix error message (#148)
1 parent 92356c9 commit 084de6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

aptos-indexer-processors-sdk/sdk/src/postgres/basic_processor/basic_processor_step.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ where
3535
(self.process_function)(transactions.data, self.conn_pool.clone())
3636
.await
3737
.map_err(|e| ProcessorError::ProcessError {
38-
message: format!("Processing transactionsfailed: {e:?}"),
38+
message: format!("Processing transactions failed: {e:?}"),
3939
})?;
4040
Ok(Some(TransactionContext {
4141
data: (), // Stub out data since it's not used in the next step

0 commit comments

Comments
 (0)