我正在使用 Starport ( https://github.com/tendermint/starport ) 引导我的 Cosmos SDK 区块链。我只想要一个 Token 来抵押和使用区块链。
这是我的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
什么?谢谢