From 15fe3050a156af1e13ea2f7d7b48bfefe41d72ad Mon Sep 17 00:00:00 2001 From: Jeff Wentworth Date: Fri, 18 Jun 2021 02:54:37 +0900 Subject: [PATCH] core/types: add DynamicFeeTx to TxData implementation list in docs (#23063) --- core/types/transaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/types/transaction.go b/core/types/transaction.go index 920318a16..a556f4b57 100644 --- a/core/types/transaction.go +++ b/core/types/transaction.go @@ -67,7 +67,7 @@ func NewTx(inner TxData) *Transaction { // TxData is the underlying data of a transaction. // -// This is implemented by LegacyTx and AccessListTx. +// This is implemented by DynamicFeeTx, LegacyTx and AccessListTx. type TxData interface { txType() byte // returns the type ID copy() TxData // creates a deep copy and initializes all fields