2

I have a function to emit event. When I check Ganache, I find that gas used is 23078. Doesn't the event consume less gas than function with contract state change operations?

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

1 Answers1

4

I don't know if i understood your question right, but 23078 gas is corresponding to 21000 standard gas price for a transaction + 2078 for calling the Event.

2078 gas is definitely less expensive than the gas normally used for a function call.

Betcheg
  • 354
  • 1
  • 6