Browse Source

storage-node: fix async method

Mokhtar Naamani 4 years ago
parent
commit
861bb42783
1 changed files with 1 additions and 1 deletions
  1. 1 1
      storage-node/packages/storage/storage.js

+ 1 - 1
storage-node/packages/storage/storage.js

@@ -391,7 +391,7 @@ class Storage {
     }
   }
 
-  async syncStatus(ipfsHash) {
+  syncStatus(ipfsHash) {
     return {
       syncing: this.pinning[ipfsHash] === true,
       synced: this.pinned[ipfsHash] === true,