Пример #1
0
 public BlockAssembler Create(ChainedBlock chainTip, AssemblerOptions options = null)
 {
     return(new PowBlockAssembler(this.consensusLoop, this.network, this.mempoolLock, this.mempool, this.dateTimeProvider, chainTip, this.loggerFactory, options));
 }
Пример #2
0
 public override BlockAssembler Create(ChainedBlock chainTip, AssemblerOptions options = null)
 {
     return(new PosBlockAssembler(this.consensusLoop, this.network, this.mempoolScheduler, this.mempool,
                                  this.dateTimeProvider, this.stakeChain, chainTip, this.loggerFactory, options));
 }
Пример #3
0
 public override BlockAssembler Create(AssemblerOptions options = null)
 {
     return(new PowBlockAssembler(this.consensusLoop, this.network, this.chain, this.mempoolLock, this.mempool, this.dateTimeProvider, this.logger, options));
 }
Пример #4
0
 public abstract BlockAssembler Create(ChainedBlock chainTip, AssemblerOptions options = null);
Пример #5
0
 public abstract BlockAssembler Create(AssemblerOptions options = null);