Skip to content

Commit

Permalink
Sync Signers (#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon authored May 23, 2022
1 parent e9b00b7 commit 747a633
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Neo.Compiler.CSharp/Neo.Compiler.CSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.1.0" />
<PackageReference Include="Neo" Version="3.2.1-CI01356" />
<PackageReference Include="Neo" Version="3.2.1-CI01358" />
<PackageReference Include="System.CommandLine" Version="2.0.0-beta3.22114.1" />
<PackageReference Include="System.CommandLine.NamingConventionBinder" Version="2.0.0-beta3.22114.1" />
</ItemGroup>
Expand Down
1 change: 0 additions & 1 deletion src/Neo.SmartContract.Framework/Native/Signer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ namespace Neo.SmartContract.Framework.Native
{
public class Signer
{
public byte[] Data;
public UInt160 Account;
public WitnessScope Scopes;
public UInt160[] AllowedContracts;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ public void Test_GetTransaction(string method, StackItem[] foundArgs, StackItem[
item = result.Pop();
Assert.IsInstanceOfType(item, typeof(Array));
Assert.AreEqual(1, (item as Array).Count);
Assert.AreEqual(6, ((item as Array)[0] as Array).Count);
Assert.AreEqual(5, ((item as Array)[0] as Array).Count);

_engine.Reset();
result = _engine.ExecuteTestCaseStandard(method, Concat(foundArgs, new ByteString(Utility.StrictUTF8.GetBytes("FirstScope"))));
Expand Down

0 comments on commit 747a633

Please sign in to comment.