diff --git a/qa/rpc-tests/test_framework/authproxy.py b/qa/rpc-tests/test_framework/authproxy.py index 5addd2674..ac9a54326 100644 --- a/qa/rpc-tests/test_framework/authproxy.py +++ b/qa/rpc-tests/test_framework/authproxy.py @@ -52,11 +52,11 @@ class JSONRPCException(Exception): self.error = rpc_error def EncodeDecimal(o): - print(repr(o)) - print(type(o)) - print(type(decimal.Decimal)) + #print(repr(o)) + #print(type(o)) + #print(type(decimal.Decimal)) if isinstance(o, decimal.Decimal): - print("isinstance Decimal") + #print("isinstance Decimal") return str(o) raise TypeError(repr(o) + " is not JSON serializable")