Skip to content

Commit

Permalink
Change fee
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Oct 12, 2020
1 parent 8bc18f0 commit 63e6b67
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Neo.SmartContract.Framework/Services/Neo/Oracle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ namespace Neo.SmartContract.Framework.Services.Neo
[Contract("0x3c05b488bf4cf699d0631bf80190896ebbf38c3b")]
public class Oracle
{
public const uint MinimumResponseFee = 0_60000000; // OracleRequestPrice=0_50000000 gasForResponse=0_10000000
public const uint MinimumResponseFee = 0_10000000;
public static extern string Name { get; }
public static extern void Request(string url, string filter, string callback, object userData, long gasForResponse);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void Test_Oracle()

entry = result.Pop();

Assert.AreEqual(0_60000000u, entry.GetInteger());
Assert.AreEqual(0_10000000u, entry.GetInteger());
}

[TestMethod]
Expand Down

0 comments on commit 63e6b67

Please sign in to comment.