add gas into and remove type from replayed txs

This commit is contained in:
Eric 2023-09-26 15:33:17 +10:00
parent 11ff6cd98b
commit c09ac02dab
No known key found for this signature in database

View File

@ -90,7 +90,8 @@ func toTransaction*(past: PastTransaction): Transaction =
data: past.input,
nonce: some past.nonce,
to: past.to,
transactionType: past.transactionType,
# transactionType: past.transactionType,
gasLimit: some past.gas,
chainId: past.chainId
)