File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff 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 } ,
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ export const isFailureHard = (failureType: string) => failureType === 'HARD'
4545
4646export 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 } ,
You can’t perform that action at this time.
0 commit comments