Skip to content

Commit

Permalink
Make KeyBuilder public so neo-debugger can use it (neo-project#2099)
Browse files Browse the repository at this point in the history
* Make KeyBuilder public so neo-debugger can use it

* Move namespace

* Clean using

Co-authored-by: Shargon <[email protected]>
  • Loading branch information
2 people authored and Shawn committed Jan 8, 2021
1 parent 1f02dcf commit 609024d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
using System;
using System.IO;

namespace Neo.SmartContract.Native
namespace Neo.SmartContract
{
internal class KeyBuilder
public class KeyBuilder
{
private readonly int id;
private readonly MemoryStream stream = new MemoryStream();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Neo.Consensus;
using Neo.Cryptography;
using Neo.Cryptography.ECC;
using Neo.IO;
Expand All @@ -14,7 +13,6 @@
using Neo.VM;
using Neo.Wallets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using static Neo.SmartContract.Native.Tokens.NeoToken;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Neo.SmartContract.Native;
using Neo.SmartContract;

namespace Neo.UnitTests.SmartContract.Native
namespace Neo.UnitTests.SmartContract
{
[TestClass]
public class UT_KeyBuilder
Expand Down

0 comments on commit 609024d

Please sign in to comment.