示例#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);