Skip to content

Commit 4d3e187

Browse files
committed
linting
1 parent a3a7a85 commit 4d3e187

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

src/services/transaction/TransactionMetadataBlobService.spec.ts

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,14 @@ import { blockHash22887036 } from '../test-helpers/mock';
2525
import { TransactionMetadataBlobService } from './TransactionMetadataBlobService';
2626

2727
// Mock the merkleize-metadata functions
28-
const mockDigest = jest.fn().mockReturnValue(
29-
new Uint8Array([
30-
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
31-
32,
32-
]),
33-
);
28+
const mockDigest = jest
29+
.fn()
30+
.mockReturnValue(
31+
new Uint8Array([
32+
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31,
33+
32,
34+
]),
35+
);
3436
const mockGetProofForExtrinsic = jest.fn().mockReturnValue(new Uint8Array([0xde, 0xad, 0xbe, 0xef]));
3537
const mockGetProofForExtrinsicParts = jest.fn().mockReturnValue(new Uint8Array([0xca, 0xfe, 0xba, 0xbe]));
3638

0 commit comments

Comments
 (0)