Browse Source

Whitespace fix

Leszek Wiesner 3 years ago
parent
commit
7d64c94667
1 changed files with 3 additions and 3 deletions
  1. 3 3
      query-node/mappings/workingGroup.ts

+ 3 - 3
query-node/mappings/workingGroup.ts

@@ -96,12 +96,12 @@ export async function workingGroup_TerminatedLeader({ event, store }: EventConte
 function getWorkerType(event: SubstrateEvent): WorkerType | null {
   if (event.section === 'storageWorkingGroup') {
     return WorkerType.STORAGE
-  } 
-  
+  }
+
   if (event.section === 'gatewayWorkingGroup') {
     return WorkerType.GATEWAY
   }
-  
+
   return null
 }