-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
core/types: create libevm.go containing extras registration moved fro…
…m state_account.go
- Loading branch information
Showing
2 changed files
with
15 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// (c) 2025, Ava Labs, Inc. All rights reserved. | ||
// See the file LICENSE for licensing terms. | ||
|
||
package types | ||
|
||
import ( | ||
ethtypes "github.com/ava-labs/libevm/core/types" | ||
) | ||
|
||
var extras = ethtypes.RegisterExtras[ | ||
ethtypes.NOOPHeaderHooks, *ethtypes.NOOPHeaderHooks, | ||
ethtypes.NOOPBlockBodyHooks, *ethtypes.NOOPBlockBodyHooks, | ||
isMultiCoin, | ||
]() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters