Private-Blockchain
預設gasprice是多少?
我想使用與 ETH 主網不同的 gas 價格的自定義鏈。“gas price”是指部署 dapp 需要多少 gas。
但是我在鏈規範文件中沒有看到指定 gasprice 的任何地方。所以我不知道預設值是什麼。供參考: https ://github.com/paritytech/parity/blob/master/ethcore/res/ethereum/foundation.json
另外(單獨的問題):有人知道我如何在鏈規範和創世文件中指定汽油價格嗎?
如果不破解核心並完全分叉給新客戶端,您就無法更改 EVM 指令的 gas 價格。Geth 和 Parity 都是如此。
如果 gas 限制對您來說不夠用,您可以為 Parity 增加以下配置選項:
--gas-floor-target GAS Amount of gas per block to target when sealing a new block (default: 4700000). --gas-cap GAS A cap on how large we will raise the gas limit per block due to transaction volume (default: 6283184).
您可以嘗試從 9999999 左右的底和 99999999 的上限開始。看看這是否適合您。現在我們涵蓋了限制。
如果您想覆蓋礦工接受的 gas 價格,您必須更改以下參數:
--gasprice WEI Minimum amount of Wei per GAS to be paid for a transaction to be accepted for mining. Overrides --basic-tx-usd.
您可以嘗試將其設置為低至 1 Wei。
並回答您的最後一個問題:您不能在創世區塊中指定汽油價格。