使用indy-cli创建池时出错



我已经运行了indy_pool网络,它使用命令启动:docker run-itd-p 9701-9708:9701-9708 indy_pool-

现在,我已经在我的系统中安装了indy-cli

现在,当我尝试使用以下命令创建池时:池创建本地池gen_text_file=/<PATH_TO_INDY_SDK>indy sdk/cli/doker_pool_transactions_genesis

它给了我一个错误:未知";gen_text_file"参数存在

有人能解释一下为什么会出现这个问题,以及可以做些什么来解决这个问题吗?

您必须在"<PATH_TO_INDY_SDK>quot;变量,以便它可以针对";docker_pool_transactions_genesis"文件

要知道indy-sdk的路径,请转到您给出"的文件夹;docker run-itd-p 9701-9708:9701-9708 indy_pool";命令并运行";echo$PWD";命令

假设我将indy-sdk克隆到我的Ubuntu主页中,那么我的gen_text_file路径是"home/indy sdk/cli/doker_pool_transactions_genesis";

在indy-cli的1.14.1及更高版本中,您需要的参数实际上是gen_txn_file=

这是一份";"帮助":

> pool create help 
Command:
pool create - Create new pool ledger config with specified name
Usage:
pool create <name-value> gen_txn_file=<gen_txn_file-value>
Parameters are:
name - The name of new pool ledger config
gen_txn_file - Path to file with genesis transactions
Examples:
pool create pool1 gen_txn_file=/home/pool_genesis_transactions

相关内容

  • 没有找到相关文章

最新更新