Esempio n. 1
0
 public LowerLevelBlock(List<PaymentTransaction> transactionSet)
 {
     TransactionSet = transactionSet;
     blockHeader = new LowerLevelBlockHeader();
 }
Esempio n. 2
0
 public LowerLevelBlock()
 {
     TransactionSet = new List<PaymentTransaction>();
     blockHeader = new LowerLevelBlockHeader();
 }