コード例 #1
0
 public TransactionPoolTests(ITestOutputHelper testOutputHelper)
 {
     _testOutputHelper = testOutputHelper;
     _wallet           = new Wallet();
     _transaction      = new Transaction();
     _transaction.CreateTransaction(_wallet, recipientAddress, amountToSend);
     _blockchain = new Features.Blockchain();
 }
コード例 #2
0
ファイル: BlockchainTest.cs プロジェクト: rony4d/Ugochain
 public BlockchainTest(ITestOutputHelper testOutputHelper)
 {
     _blockchain       = new Features.Blockchain();
     _blockchain2      = new Features.Blockchain();
     _testOutputHelper = testOutputHelper;
 }
コード例 #3
0
ファイル: WalletTests.cs プロジェクト: rony4d/Ugochain
 public WalletTests(ITestOutputHelper testOutputHelper)
 {
     _wallet           = new Wallet();
     _testOutputHelper = testOutputHelper;
     _blockchain       = new Features.Blockchain();
 }