Skip to content

Commit

Permalink
fix(data): correct error logging typo PE-2810
Browse files Browse the repository at this point in the history
  • Loading branch information
djwhitt committed Jan 11, 2023
1 parent e87a89f commit 3faa1dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/tx-chunks-data-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export class TxChunksDataSource implements ContiguousDataSource {
} catch (error: any) {
this.log.error('Failed to retrieve transaction data:', {
txId,
messag: error.message,
message: error.message,
stack: error.stack,
});
throw error;
Expand Down

0 comments on commit 3faa1dd

Please sign in to comment.