Skip to content

Commit

Permalink
Rename class
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Aug 13, 2019
1 parent 1783f77 commit 37646d0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions neo.UnitTests/Network/P2P/Payloads/UT_Witness.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ namespace Neo.UnitTests.Network.P2P.Payloads
[TestClass]
public class UT_Witness
{
class dummyVerificable : IVerifiable
class DummyVerificable : IVerifiable
{
private UInt160 _hash;

public Witness[] Witnesses { get; set; }

public int Size => 1;

public dummyVerificable(UInt160 hash)
public DummyVerificable(UInt160 hash)
{
_hash = hash;
}
Expand Down Expand Up @@ -101,7 +101,7 @@ private Witness PrepareDummyWitness(int maxAccounts)

// Sign

var data = new ContractParametersContext(new dummyVerificable(multiSignContract.ScriptHash));
var data = new ContractParametersContext(new DummyVerificable(multiSignContract.ScriptHash));

for (int x = 0; x < maxAccounts; x++)
{
Expand Down

0 comments on commit 37646d0

Please sign in to comment.