浏览代码

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