From 178ed3923b44766968500fa7405577af0125356a Mon Sep 17 00:00:00 2001 From: Hussam Date: Tue, 22 Oct 2024 11:35:32 -0500 Subject: [PATCH] bugfix: Fix Quai/Qi coinbases print --- core/slice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/slice.go b/core/slice.go index a8594ddb9..ddae7b37a 100644 --- a/core/slice.go +++ b/core/slice.go @@ -397,7 +397,7 @@ func (sl *Slice) Append(header *types.WorkObject, domTerminus common.Hash, domOr } var coinbaseType string - if block.PrimaryCoinbase().IsInQiLedgerScope() { + if block.PrimaryCoinbase().IsInQuaiLedgerScope() { coinbaseType = "QuaiCoinbase" } else { coinbaseType = "QiCoinbase"