From b7a7b15575f4f67e264a6ab8bc791b17f2abe00f Mon Sep 17 00:00:00 2001 From: zhiqiangxu <652732310@qq.com> Date: Wed, 3 Jan 2024 17:07:48 +0800 Subject: [PATCH] break after 80 characters --- mempool/mempool.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mempool/mempool.go b/mempool/mempool.go index 9e98d4bc10a..a8576a1bf63 100644 --- a/mempool/mempool.go +++ b/mempool/mempool.go @@ -927,8 +927,8 @@ func (mp *TxPool) validateReplacement(tx *btcutil.Tx, func (mp *TxPool) maybeAcceptTransaction(tx *btcutil.Tx, isNew, rateLimit, rejectDupOrphans bool) ([]*chainhash.Hash, *TxDesc, error) { txHash := tx.Hash() - // If a transaction has witness data, and segwit isn't active yet, then we won't accept it into the mempool as - // it can't be mined yet. + // If a transaction has witness data, and segwit isn't active yet, then + // we won't accept it into the mempool as it can't be mined yet. if tx.MsgTx().HasWitness() { segwitActive, err := mp.cfg.IsDeploymentActive(chaincfg.DeploymentSegwit) if err != nil {