miner: set sidecar version when recomputing proofs (#32199)
Some checks are pending
/ Linux Build (push) Waiting to run
/ Linux Build (arm) (push) Waiting to run
/ Windows Build (push) Waiting to run
/ Docker Image (push) Waiting to run

- If the block number is `osaka` fork and needs to recompute some `blob
proofs` to `cell proofs`, here also needs to set version to `1`.
This commit is contained in:
maskpp 2025-07-14 22:06:57 +08:00 committed by GitHub
parent e9e12a97d2
commit 1a5f399e30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -440,6 +440,7 @@ func (miner *Miner) commitTransactions(env *environment, plainTxs, blobTxs *tran
}
sidecar.Proofs = append(sidecar.Proofs, cellProofs...)
}
sidecar.Version = 1
}
}
}