Пример #1
0
 public BlockchainAdder(
     Blockchain blockchain,
     VoteMemoryPool voteMemoryPool,
     BlockForwarder blockForwarder)
 {
     this.blockchain     = blockchain;
     this.voteMemoryPool = voteMemoryPool;
     this.blockForwarder = blockForwarder;
 }
Пример #2
0
 public BlockchainAdder(
     Blockchain blockchain,
     VoteMemoryPool voteMemoryPool,
     BlockForwarder blockForwarder,
     IConsole console)
 {
     this.blockchain     = blockchain;
     this.voteMemoryPool = voteMemoryPool;
     this.blockForwarder = blockForwarder;
     this.console        = console;
 }