当前位置: 首页>>代码示例>>Python>>正文


Python Core.add_blockchain方法代码示例

本文整理汇总了Python中core.core.Core.add_blockchain方法的典型用法代码示例。如果您正苦于以下问题:Python Core.add_blockchain方法的具体用法?Python Core.add_blockchain怎么用?Python Core.add_blockchain使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在core.core.Core的用法示例。


在下文中一共展示了Core.add_blockchain方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: Blockchain

# 需要导入模块: from core.core import Core [as 别名]
# 或者: from core.core.Core import add_blockchain [as 别名]
  
  # Autodetect available workers if requested or if a new instance is being set up
  if options.detect_workers or core.is_new_instance:
    core.detect_workers()

  # Add example work sources if requested or if a new instance is being set up
  if options.add_example_work_sources or core.is_new_instance:
    from core.blockchain import Blockchain
    from core.worksourcegroup import WorkSourceGroup
    from modules.theseven.bcjsonrpc.bcjsonrpcworksource import BCJSONRPCWorkSource
    # Find the Bitcoin block chain, or create it if neccessary
    blockchain = core.get_blockchain_by_name("Bitcoin")
    if not blockchain:
      blockchain = Blockchain(core)
      blockchain.settings.name = "Bitcoin"
      core.add_blockchain(blockchain)
    # Save the old root work source (will be moved around)
    usersources = core.get_root_work_source()
    # Create the new root work source group
    newroot = WorkSourceGroup(core)
    # Copy the old root work source's name to the new one
    newroot.settings.name = usersources.settings.name
    # Reconfigure the old root work source
    usersources.settings.name = "User work sources"
    usersources.settings.priority = 1000
    usersources.apply_settings()
    newroot.add_work_source(usersources)
    # Create example work source group
    examplesources = WorkSourceGroup(core)
    examplesources.settings.name = "Example/donation work sources"
    examplesources.settings.priority = 10
开发者ID:ARudik,项目名称:ardulon-miner,代码行数:33,代码来源:run-mpbm.py


注:本文中的core.core.Core.add_blockchain方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。