Gas-Estimate

函式呼叫事件消耗的氣體?

  • March 7, 2018

我有一個發出事件的功能。當我檢查 Ganache 時,我發現使用的 gas 是 23078。事件消耗的 gas 不是比合約狀態更改操作的函式少嗎?

function log() {
   CheckUserAccess("John_Wick","Create",false);
}

我不知道我是否理解您的問題,但 23078 天然氣對應於 21000 標準天然氣價格的交易 + 2078 用於呼叫事件。

2078 gas 絕對比通常用於函式呼叫的 gas 便宜。

引用自:https://ethereum.stackexchange.com/questions/41984