You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 4, 2024. It is now read-only.
Currently, the MsgEthereumTx only supports AccessList transaction types. Ideally, we should support legacy signing in case someone doesn't want to enable the Berlin fork on the chain Config.
Actionable items:
On msg.AsEthereumData, check if AccessList == nil and return a LegacyTx transaction data. If the msg contains a non-nil access list, create an AccessListTx
Test message signing with Homestead, EIP155 and Frontier signers (see msg_test.go for ref)
The text was updated successfully, but these errors were encountered:
Currently, the MsgEthereumTx only supports
AccessList
transaction types. Ideally, we should support legacy signing in case someone doesn't want to enable the Berlin fork on the chain Config.Actionable items:
msg.AsEthereumData
, check ifAccessList == nil
and return aLegacyTx
transaction data. If the msg contains a non-nil access list, create anAccessListTx
msg_test.go
for ref)The text was updated successfully, but these errors were encountered: