Skip to content

Commit

Permalink
Only left #895
Browse files Browse the repository at this point in the history
  • Loading branch information
shargon committed Feb 13, 2024
1 parent d7d457a commit 179cb07
Show file tree
Hide file tree
Showing 6 changed files with 134 additions and 126 deletions.
255 changes: 131 additions & 124 deletions neo-devpack-dotnet.sln

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public static string GetArtifactsSource(this ContractAbi abi, string name, bool

sourceCode.WriteLine("}");

return sourceCode.ToString().TrimEnd();
return sourceCode.ToString();
}

private static (ContractMethodDescriptor[] methods, (ContractMethodDescriptor getter, ContractMethodDescriptor? setter)[] properties)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<ProjectReference Include="..\..\src\Neo.SmartContract.Framework\Neo.SmartContract.Framework.csproj">
<Aliases>scfx</Aliases>
</ProjectReference>
<ProjectReference Include="..\..\src\Neo.SmartContract.Testing\Neo.SmartContract.Testing.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public abstract class Contract1 : Neo.SmartContract.Testing.SmartContract
protected Contract1(Neo.SmartContract.Testing.SmartContractInitialize initialize) : base(initialize) { }
#endregion
}
".Replace("\r\n", "\n").Trim());
".Replace("\r\n", "\n").TrimStart());
}
}
}

0 comments on commit 179cb07

Please sign in to comment.