Skip to content

Commit aa64bf6

Browse files
authored
fix(Health): fix typo (#888)
References: #878
1 parent 5722416 commit aa64bf6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Health/Health.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,12 @@ export class Health {
6161
},
6262
})
6363

64-
const ipfsDirectoryHasDAO = new IPFSDirectoryHashDAO({
64+
const ipfsDirectoryHashDAO = new IPFSDirectoryHashDAO({
6565
dependencies: {
6666
ipfsDirectoryHashInfoCollection: this.ipfsDirectoryHashInfoCollection,
6767
},
6868
})
69-
await ipfsDirectoryHasDAO.start()
69+
await ipfsDirectoryHashDAO.start()
7070

7171
const bitcoinCore = new BitcoinCore({
7272
host: this.configuration.bitcoinUrl,
@@ -86,7 +86,7 @@ export class Health {
8686
dependencies: {
8787
logger: this.logger,
8888
healthDAO,
89-
ipfsDirectoryHasDAO,
89+
ipfsDirectoryHashDAO,
9090
bitcoinCore,
9191
ipfs,
9292
},

src/Health/HealthController.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const isFailureHard = (failureType: string) => failureType === 'HARD'
4545

4646
export interface Dependencies {
4747
readonly healthDAO: HealthDAO
48-
readonly ipfsDirectoryHasDAO: IPFSDirectoryHashDAO
48+
readonly ipfsDirectoryHashDAO: IPFSDirectoryHashDAO
4949
readonly bitcoinCore: BitcoinCore
5050
readonly logger: Pino.Logger
5151
readonly ipfs: IPFS
@@ -68,7 +68,7 @@ export class HealthController {
6868
dependencies: {
6969
logger,
7070
healthDAO,
71-
ipfsDirectoryHasDAO,
71+
ipfsDirectoryHashDAO,
7272
bitcoinCore,
7373
ipfs,
7474
},

0 commit comments

Comments
 (0)