mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-05-25 00:06:49 +00:00

* [NOD-1451] Implement block validator * [NOD-1451] Implement block validator * [NOD-1451] Fix merge errors * [NOD-1451] Implement block validator * [NOD-1451] Implement checkTransactionInIsolation * [NOD-1451] Copy txscript to validator * [NOD-1451] Change txscript to new design * [NOD-1451] Add checkTransactionInContext * [NOD-1451] Add checkBlockSize * [NOD-1451] Add error handling * [NOD-1451] Implement checkTransactionInContext * [NOD-1451] Add checkTransactionMass placeholder * [NOD-1451] Finish validators * [NOD-1451] Add comments and stringers * [NOD-1451] Return model.TransactionValidator interface * [NOD-1451] Premake rule errors for each "code" * [NOD-1451] Populate transaction mass * [NOD-1451] Renmae functions * [NOD-1451] Always use skipPow=false * [NOD-1451] Renames * [NOD-1451] Remove redundant types from WriteElement * [NOD-1451] Fix error message * [NOD-1451] Add checkTransactionPayload * [NOD-1451] Add ValidateProofOfWorkAndDifficulty to block validator interface * [NOD-1451] Move stringers to model * [NOD-1451] Fix error message
41 lines
1.4 KiB
Go
41 lines
1.4 KiB
Go
package hashserialization
|
|
|
|
import (
|
|
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
|
|
"github.com/kaspanet/kaspad/domain/consensus/utils/hashes"
|
|
"github.com/pkg/errors"
|
|
"io"
|
|
)
|
|
|
|
func serializeHeader(w io.Writer, header *externalapi.DomainBlockHeader) error {
|
|
timestamp := header.TimeInMilliseconds
|
|
|
|
numParents := len(header.ParentHashes)
|
|
if err := writeElements(w, header.Version, uint64(numParents)); err != nil {
|
|
return err
|
|
}
|
|
for _, hash := range header.ParentHashes {
|
|
if err := WriteElement(w, hash); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return writeElements(w, header.HashMerkleRoot, header.AcceptedIDMerkleRoot, header.UTXOCommitment, timestamp, header.Bits, header.Nonce)
|
|
}
|
|
|
|
// HeaderHash returns the given header hash
|
|
func HeaderHash(header *externalapi.DomainBlockHeader) *externalapi.DomainHash {
|
|
// Encode the header and double sha256 everything prior to the number of
|
|
// transactions.
|
|
writer := hashes.NewHashWriter()
|
|
err := serializeHeader(writer, header)
|
|
if err != nil {
|
|
// It seems like this could only happen if the writer returned an error.
|
|
// and this writer should never return an error (no allocations or possible failures)
|
|
// the only non-writer error path here is unknown types in `WriteElement`
|
|
panic(errors.Wrap(err, "this should never happen. SHA256's digest should never return an error"))
|
|
}
|
|
|
|
res := writer.Finalize()
|
|
return &res
|
|
}
|