-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[1.0.5] Refactor EVMExecutor::call #202
Conversation
Confirmed the vmTrace and stateDiff look good: The CALL operation now cost 6930 (which indicates the coinbase address access is WARM)
also the local stateDiff of balance matched the gast cost of 65152
seems i got the assertion error followed by the crash in rpc during the get balance request:
|
need to fix the crash of "Assert failed: max_fee_per_gas >= base_fee_per_gas"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Confirmed balance check via RPC is fine and the number matched with antelope:
{
"rows": [{
"id": 0,
"eth_address": "2787b98fc4e731d0456b3941f0b3fe2e01439961",
"nonce": 4,
"balance": "00000000000000000000000000000000000000000000d3b9f96a45dab38bdf9c(=999849947793199999999900)",
"code_id": null,
"flags": 0
}
],
"more": false,
"next_key": ""
}
------------------------------------
now checking balances via ETH-RPC http://127.0.0.1:8881
EOS balance of address 2787b98fc4e731d0456b3941f0b3fe2e01439961 is 999849947793199999999900 EOS
Closes #201 #203 #204