Browse Source

Normalize string concat

Ricardo Maltez 4 years ago
parent
commit
c9a119add9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      server/joystream/index.ts

+ 1 - 1
server/joystream/index.ts

@@ -139,7 +139,7 @@ const addBlockRange = async (
   )) as Option<ActiveEraInfo>
   )) as Option<ActiveEraInfo>
 
 
   for (let i = startBlock; i < endBlock; i++) {
   for (let i = startBlock; i < endBlock; i++) {
-    console.log('[Joystream] Processing block ' + i)
+    console.log(`[Joystream] Processing block ${i}`)
 
 
     const hash = await getBlockHash(api, i)
     const hash = await getBlockHash(api, i)
     const blockEra = (await api.query.staking.activeEra.at(
     const blockEra = (await api.query.staking.activeEra.at(