Browse Source

code clean up

rohit.gowda 4 years ago
parent
commit
2ce18d4825
1 changed files with 0 additions and 2 deletions
  1. 0 2
      app/src/providers/p2p-storage-ipfs/p2p-storage-ipfs.ts

+ 0 - 2
app/src/providers/p2p-storage-ipfs/p2p-storage-ipfs.ts

@@ -23,7 +23,6 @@ export class P2pStorageIpfsProvider {
   public storePublicKey(publicKeyHistory) {
     return this.storeOnIPFS(publicKeyHistory);
   }
-
   private storeOnIPFS(json) {
     const formData = new FormData();
     formData.append("data", JSON.stringify(json));
@@ -48,7 +47,6 @@ export class P2pStorageIpfsProvider {
    * @param hash address hash
    */
   public async fetchTweet(hash: string): Promise < string > {
-    console.log('address hash is:', hash);
     let tweet;
     const options = {
       params: { arg: hash }