Skip to content

Commit

Permalink
Remove private properties
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Dec 14, 2020
1 parent 9439ccd commit c7d4ca8
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 8 deletions.
2 changes: 0 additions & 2 deletions src/Neo.SmartContract.Framework/Services/Neo/GAS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ namespace Neo.SmartContract.Framework.Services.Neo
public class GAS
{
public static extern UInt160 Hash { [ContractHash] get; }
public static extern int Id { get; }
public static extern uint ActiveBlockIndex { get; }
public static extern string Symbol { get; }
public static extern byte Decimals { get; }
public static extern BigInteger TotalSupply();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ public class ManagementContract
{
public static extern UInt160 Hash { [ContractHash] get; }
public static extern string Name { get; }
public static extern int Id { get; }
public static extern uint ActiveBlockIndex { get; }
public static extern Contract GetContract(UInt160 hash);
public static extern Contract Deploy(byte[] nefFile, string manifest);
public static extern void Update(byte[] nefFile, string manifest);
Expand Down
2 changes: 0 additions & 2 deletions src/Neo.SmartContract.Framework/Services/Neo/Oracle.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ public class Oracle
{
public static extern UInt160 Hash { [ContractHash] get; }
public const uint MinimumResponseFee = 0_10000000;
public static extern int Id { get; }
public static extern uint ActiveBlockIndex { get; }
public static extern void Request(string url, string filter, string callback, object userData, long gasForResponse);
}
}
2 changes: 0 additions & 2 deletions src/Neo.SmartContract.Framework/Services/Neo/Policy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ namespace Neo.SmartContract.Framework.Services.Neo
public class Policy
{
public static extern UInt160 Hash { [ContractHash] get; }
public static extern int Id { get; }
public static extern uint ActiveBlockIndex { get; }
public static extern uint GetMaxTransactionsPerBlock();
public static extern uint GetMaxBlockSize();
public static extern long GetMaxBlockSystemFee();
Expand Down

0 comments on commit c7d4ca8

Please sign in to comment.