为什么我在使用 Starport 和 CosmosSDK 时得到 "invalid coin denomination"
Why do I get "invalid coin denomination" when using Starport with the CosmosSDK
我正在使用 Starport (https://github.com/tendermint/starport) bootstrap 我的 Cosmos SDK 区块链。我只想要一个代币用于抵押和使用区块链。
这是我的 config.yml
文件
version: 1
accounts:
- name: user1
coins: ["120000aphoton"]
- name: user2
coins: ["1000aphoton"]
validator:
name: user1
staked: "100000aphoton"
当尝试 运行 区块链的守护进程时,我收到错误消息
panic: invalid coin denomination: failed to execute message; message index: 0
我的硬币面额有什么问题,在 config.yml
中自定义我的代币时我需要更改/注意什么?谢谢
您需要配置质押模块以接受 aphoton 作为债券面额。这可以通过将以下内容添加到 config.yml 来完成:
genesis:
app_state:
staking:
params:
bond_denom: "aphoton"
我正在使用 Starport (https://github.com/tendermint/starport) bootstrap 我的 Cosmos SDK 区块链。我只想要一个代币用于抵押和使用区块链。
这是我的 config.yml
文件
version: 1
accounts:
- name: user1
coins: ["120000aphoton"]
- name: user2
coins: ["1000aphoton"]
validator:
name: user1
staked: "100000aphoton"
当尝试 运行 区块链的守护进程时,我收到错误消息
panic: invalid coin denomination: failed to execute message; message index: 0
我的硬币面额有什么问题,在 config.yml
中自定义我的代币时我需要更改/注意什么?谢谢
您需要配置质押模块以接受 aphoton 作为债券面额。这可以通过将以下内容添加到 config.yml 来完成:
genesis:
app_state:
staking:
params:
bond_denom: "aphoton"