File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff 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 ( ) ;
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments