如何增加系统中代币的发行总量?
How to increase the total issuance of tokens in the system?
当我第一次 build 和 运行 节点模板时,在 polkadot ui 它显示
"发行总量
4.6116 MUnit”,我想增加这个。我该怎么做。
这里基本上设置了一些被赋予的账户。 https://github.com/paritytech/substrate/blob/master/bin/node/cli/src/chain_spec.rs#L303
或者使用root在这个系统中铸造一些令牌。 https://github.com/paritytech/substrate/blob/master/frame/balances/src/lib.rs#L314
还有很多方法可以做到这一点。但是都是用托盘天平完成的。
当我第一次 build 和 运行 节点模板时,在 polkadot ui 它显示 "发行总量 4.6116 MUnit”,我想增加这个。我该怎么做。
这里基本上设置了一些被赋予的账户。 https://github.com/paritytech/substrate/blob/master/bin/node/cli/src/chain_spec.rs#L303
或者使用root在这个系统中铸造一些令牌。 https://github.com/paritytech/substrate/blob/master/frame/balances/src/lib.rs#L314
还有很多方法可以做到这一点。但是都是用托盘天平完成的。