-1

我分叉了 TurtleCoin 并定制了一些配置,包括地址前缀。我使用 Visual Studio 在 Windows 上编译它。Wallet并且daemon工作正常但miner不工作。当我启动矿工并添加地址时,会收到以下消息:

Address is not valid: The address does not have the correct prefix corresponding to this coin - it appears to be an address for another cryptocurrency.

我在哪里可以定义地址前缀miner

我按照以下步骤操作:https ://github.com/turtlecoin/turtlecoin#windows

4

1 回答 1

1

有趣的是,查看代码库这个错误被称为ADDRESS_WRONG_PREFIX. validateAddresses这是由挖掘代码调用的函数返回的, here

此功能仅检查前缀是否匹配WalletConfig::addressPrefix,这意味着只要您在此处更改钱包配置中的地址前缀。它应该工作..我希望这会有所帮助。

于 2019-04-29T02:02:35.347 回答