Skip to content
Merged
978 changes: 0 additions & 978 deletions benchmarks/Neo.Json.Benchmarks/Data/RpcTestCases.json

Large diffs are not rendered by default.

37 changes: 0 additions & 37 deletions src/Neo/Extensions/SmartContract/NeoTokenExtensions.cs

This file was deleted.

4 changes: 2 additions & 2 deletions src/Neo/Ledger/Blockchain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -546,8 +546,8 @@ private static ImmutableHashSet<UInt160> UpdateExtensibleWitnessWhiteList(Protoc
{
var currentHeight = NativeContract.Ledger.CurrentIndex(snapshot);
var builder = ImmutableHashSet.CreateBuilder<UInt160>();
builder.Add(NativeContract.NEO.GetCommitteeAddress(snapshot));
var validators = NativeContract.NEO.GetNextBlockValidators(snapshot, settings.ValidatorsCount);
builder.Add(NativeContract.Governance.GetCommitteeAddress(snapshot));
var validators = NativeContract.Governance.GetNextBlockValidators(snapshot, settings.ValidatorsCount);
builder.Add(Contract.GetBFTAddress(validators));
builder.UnionWith(validators.Select(u => Contract.CreateSignatureRedeemScript(u).ToScriptHash()));
var stateValidators = NativeContract.RoleManagement.GetDesignatedByRole(snapshot, Role.StateValidator, currentHeight);
Expand Down
2 changes: 1 addition & 1 deletion src/Neo/Network/P2P/Payloads/HighPriorityAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ protected override void SerializeWithoutType(BinaryWriter writer)

public override bool Verify(DataCache snapshot, Transaction tx)
{
UInt160 committee = NativeContract.NEO.GetCommitteeAddress(snapshot);
UInt160 committee = NativeContract.Governance.GetCommitteeAddress(snapshot);
return tx.Signers.Any(p => p.Account.Equals(committee));
}
}
191 changes: 0 additions & 191 deletions src/Neo/SmartContract/Native/FungibleToken.cs

This file was deleted.

Loading
Loading