Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
chore: fixing typo and messaging
Browse files Browse the repository at this point in the history
  • Loading branch information
AuHau committed Jun 8, 2020
1 parent d002aba commit 386e2a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/services/rns/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const rns: CachedService = {

// We require services to be precached before running server
if (!isServiceInitialized('rns.owner')) {
logger.critical('Storage service is not initialized! Rune precache command.')
return logger.critical('RNS service is not initialized! Run precache command.')
}

const rnsEventsEmitter = getEventsEmitterForService('rns.owner', eth, rnsContractAbi.abi as AbiItem[])
Expand Down
2 changes: 1 addition & 1 deletion src/services/storage/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ const storage: CachedService = {

// We require services to be precached before running server
if (!isServiceInitialized(SERVICE_NAME)) {
logger.critical('Storage service is not initialized! Rune precache command.')
return logger.critical('Storage service is not initialized! Run precache command.')
}

const eventsEmitter = getEventsEmitterForService(SERVICE_NAME, eth, storageManagerContract.abi as AbiItem[])
Expand Down

0 comments on commit 386e2a4

Please sign in to comment.