소스 검색

code clean up

rohit.gowda 4 년 전
부모
커밋
2ce18d4825
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  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 }