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