From b8c5a31b32b8b989524a95d055d0f33be6b6d0aa Mon Sep 17 00:00:00 2001 From: Jared Wasinger Date: Thu, 10 Jul 2025 19:46:23 +0900 Subject: [PATCH] fix bal construction type constructor name --- core/types/bal/bal.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/types/bal/bal.go b/core/types/bal/bal.go index a7db7329b0..8c92d9d924 100644 --- a/core/types/bal/bal.go +++ b/core/types/bal/bal.go @@ -77,7 +77,7 @@ type ConstructionBlockAccessList struct { } // NewBlockAccessList instantiates an empty access list. -func NewBlockAccessList() ConstructionBlockAccessList { +func NewConstructionBlockAccessList() ConstructionBlockAccessList { return ConstructionBlockAccessList{ Accounts: make(map[common.Address]*ConstructionAccountAccess), } @@ -152,7 +152,7 @@ func (b *ConstructionBlockAccessList) PrettyPrint() string { // Copy returns a deep copy of the access list. func (b *ConstructionBlockAccessList) Copy() *ConstructionBlockAccessList { - res := NewBlockAccessList() + res := NewConstructionBlockAccessList() for addr, aa := range b.Accounts { var aaCopy ConstructionAccountAccess