Skip to content

Commit 071bf9d

Browse files
committed
Removed console writes
1 parent 0af309b commit 071bf9d

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Phantasma.Blockchain/BlockOracle.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public override T Read<T>(Timestamp time, string url)
2222
{
2323
T content = null;
2424

25-
Console.WriteLine("read url " + url);
25+
//Console.WriteLine("read url " + url);
2626

2727
string tag;
2828
if (ProtocolVersion >= 4)

Phantasma.Blockchain/Oracle.cs

-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ public virtual T Read<T>(Timestamp time, string url) where T : class
133133
{
134134
if (TryGetOracleCache<T>(url, out T cachedEntry))
135135
{
136-
Console.WriteLine("return cache ");
137136
return cachedEntry as T;
138137
}
139138

Phantasma.RPC/Server.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ protected override bool Run()
8080
json = "{\"response\" : {\"error\" : \"json parsing error\"}}";
8181
}
8282

83-
Console.WriteLine(json);
83+
//Console.WriteLine(json);
8484

8585
var output = Encoding.UTF8.GetBytes(json);
8686
stream.Write(output, 0, output.Length);

0 commit comments

Comments
 (0)