From 9b84c7691dd70851aa8396febfa79156fd0ee2e7 Mon Sep 17 00:00:00 2001 From: De Facto Date: Thu, 25 Feb 2021 18:48:16 +0800 Subject: [PATCH] remove jsonReplacer log --- src/json.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/json.ts b/src/json.ts index 4e05949..655b067 100644 --- a/src/json.ts +++ b/src/json.ts @@ -17,7 +17,6 @@ export function jsonReviver(_key: string, val: any) { export function jsonReplacer(key: string, value: any) { if (value && typeof value == "object") { - console.log("jsonReplacer", key, value) if (value.constructor == PublicKey) { return { type: "PublicKey",