mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* Replace default hasher (Double-SHA256) with domain seperated blake2b * Replace all hashes with domain seperated blake2b * Update the genesis blocks * Replace OP_HASH256 with OP_BLAKE2B * Fix the merkle tree by appending zeros instead of duplicating the hash when there is 1 branch left * Update tests * Add a payloadHash function * Update gitignore to ignore binaries * Fix a bug in the blake2b opcode
63 lines
653 B
Plaintext
63 lines
653 B
Plaintext
# Temp files
|
|
*~
|
|
|
|
# Databases
|
|
kaspad.db
|
|
*-shm
|
|
*-wal
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Compiled Object files, Static and Dynamic libs (Shared Objects)
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Real binaries, build with `go build .`
|
|
kaspad
|
|
cmd/gencerts/gencerts
|
|
cmd/kaspactl/kaspactl
|
|
cmd/kasminer/kaspaminer
|
|
*.exe
|
|
*.exe~
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Folders
|
|
_obj
|
|
_test
|
|
vendor
|
|
|
|
# Architecture specific extensions/prefixes
|
|
*.[568vq]
|
|
[568vq].out
|
|
|
|
*.cgo1.go
|
|
*.cgo2.c
|
|
_cgo_defun.c
|
|
_cgo_gotypes.go
|
|
_cgo_export.*
|
|
|
|
_testmain.go
|
|
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
debug
|
|
debug.test
|
|
__debug_bin
|
|
|
|
# CI
|
|
version.txt
|
|
coverage.txt
|
|
|
|
testdbs/
|
|
coverage.tmp
|