Skip to content

Commit 8fae376

Browse files
committed
changes after merge peterszombati#26
1 parent 18dea83 commit 8fae376

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

esbuild.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ for (const f of formats)
2424
.catch(e => {
2525
console.log(e)
2626
})
27-
.then(() => console.log('Successfully bundled the package in the ' + f.format + ' format'))
27+
.then(() => console.log('Successfully bundled the package in the ' + f.format + ' format'))

sandbox/test/connectionTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ export function connectionTest(x: XAPI): Promise<void> {
1515
reject(e)
1616
}
1717
})
18-
}
18+
}

sandbox/test/messageQueuStressTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ export function messageQueuStressTest(x: XAPI): Promise<void> {
3131
reject(e)
3232
}
3333
})
34-
}
34+
}

sandbox/test/subscribeTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ export function subscribeTest(x: XAPI): Promise<void> {
1818
reject(e)
1919
}
2020
})
21-
}
21+
}

sandbox/test/tradeTest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ export function tradeTest(x: XAPI): Promise<void> {
4444
x.disconnect()
4545
})
4646
})
47-
}
47+
}

src/core/Socket/SocketConnection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,4 +239,4 @@ export class SocketConnection extends Queue {
239239
this.handleError(errorCode, errorDescr, customTag, time)
240240
}
241241
}
242-
}
242+
}

src/enum/Enum.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,4 +169,4 @@ export type RelevantCurrencies =
169169
| 'CLP'
170170
| 'DKK'
171171
| 'BTC'
172-
| 'ETH'
172+
| 'ETH'

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ export function getProfit({
119119
contractSize: number
120120
}) {
121121
return (isBuy ? closePrice - openPrice : openPrice - closePrice) * lot * contractSize
122-
}
122+
}

src/modules/Time.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ export class Time {
3232
public getUTC(): Date {
3333
return new Date(this.UTCTimestamp)
3434
}
35-
}
35+
}

src/modules/WebSocketWrapper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,4 +124,4 @@ export class WebSocketWrapper extends Listener {
124124
this._tryReconnect = false
125125
this.ws && this.ws.close()
126126
}
127-
}
127+
}

0 commit comments

Comments
 (0)