Skip to content

Commit a4696c0

Browse files
committed
Lint fix
1 parent df7a321 commit a4696c0

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

e2e/infrastructure/TransactionHttp.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ describe('TransactionHttp', () => {
102102
let transactionRepository: TransactionRepository;
103103
let transactionStatusRepository: TransactionStatusRepository;
104104
let votingKey: string;
105-
let votingKeyV1: string;
106105

107106
const remoteAccount = Account.generateNewAccount(helper.networkType);
108107

@@ -117,7 +116,6 @@ describe('TransactionHttp', () => {
117116
generationHash = helper.generationHash;
118117
networkType = helper.networkType;
119118
votingKey = Convert.uint8ToHex(Crypto.randomBytes(32));
120-
votingKeyV1 = Convert.uint8ToHex(Crypto.randomBytes(48));
121119
namespaceRepository = helper.repositoryFactory.createNamespaceRepository();
122120
transactionRepository = helper.repositoryFactory.createTransactionRepository();
123121
transactionStatusRepository = helper.repositoryFactory.createTransactionStatusRepository();

test/infrastructure/Listener.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ describe('Listener', () => {
225225
let multisigIndex = 0;
226226
class WebSocketMultisigMock {
227227
constructor(public readonly url: string) {}
228-
send(payload: string): void {
228+
send(): void {
229229
multisigIndex += 1;
230230
}
231231
}
@@ -521,7 +521,7 @@ describe('Listener', () => {
521521
let multisigIndex = 0;
522522
class WebSocketMultisigMock {
523523
constructor(public readonly url: string) {}
524-
send(payload: string): void {
524+
send(): void {
525525
multisigIndex += 1;
526526
}
527527
}

0 commit comments

Comments
 (0)