本文整理汇总了Python中core.core.Core.get_blockchain_by_name方法的典型用法代码示例。如果您正苦于以下问题:Python Core.get_blockchain_by_name方法的具体用法?Python Core.get_blockchain_by_name怎么用?Python Core.get_blockchain_by_name使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类core.core.Core
的用法示例。
在下文中一共展示了Core.get_blockchain_by_name方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Blockchain
# 需要导入模块: from core.core import Core [as 别名]
# 或者: from core.core.Core import get_blockchain_by_name [as 别名]
# Autodetect appropriate frontends if requested or if a new instance is being set up
if options.detect_frontends or core.is_new_instance:
core.detect_frontends()
# 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)