TurtleCoin fork:如何为矿工定义地址前缀?

时间:2019-04-29 01:23:21

标签: bitcoin cryptocurrency monero turtlecoin

我分叉了TurtleCoin,并自定义了一些配置,包括地址pefix。我在Windows上使用Visual Studio对其进行了编译。 Walletdaemon可以正常工作,但是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定义地址pefix?

我遵循了以下步骤:https://github.com/turtlecoin/turtlecoin#windows

1 个答案:

答案 0 :(得分:1)

有趣的是,在代码库中查找此错误称为ADDRESS_WRONG_PREFIX。由采矿代码调用的validateAddresses函数here返回。

此功能仅检查前缀是否与WalletConfig::addressPrefix匹配,这意味着只要您更改了位于here的钱包配置中的地址前缀。应该可以。.希望对您有所帮助。