From fd05c0a79bbbc3bed3eb58ac9db06bd12699f65c Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Tue, 8 Jul 2025 16:33:50 +0200 Subject: [PATCH] miner: fix typo in comment --- miner/worker.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/miner/worker.go b/miner/worker.go index 45a4b55f55..6738b2d49d 100644 --- a/miner/worker.go +++ b/miner/worker.go @@ -78,7 +78,7 @@ const ( // Block size is capped by the protocol at params.MaxBlockSize. When producing blocks, we // try to say below the size including a buffer zone, this is to avoid going over the -// maximum size with auxilary data added into the block. +// maximum size with auxiliary data added into the block. const maxBlockSizeBufferZone = 1_000_000 // newPayloadResult is the result of payload generation.