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

* Modify DefaultTimeout to 120 seconds A temporary workaround for nodes having trouble to sync (currently the download of pruning point related data during IBD takes more than 30 seconds) * Cache existence in reachability store * Cache block level in the header * Fix IBD indication on submit block * Add hardForkOmitGenesisFromParentsDAAScore logic * Fix NumThreads bug in the wallet * Get rid of ParentsAtLevel header method * Fix a bug in BuildPruningPointProof * Increase race detector timeout * Add cache to BuildPruningPointProof * Add comments and temp comment out go vet * Fix ParentsAtLevel * Dont fill empty parents * Change HardForkOmitGenesisFromParentsDAAScore in fast netsync test * Add --allow-submit-block-when-not-synced in stability tests * Fix TestPruning * Return fast tests * Fix off by one error on kaspawallet * Fetch only one block with trusted data at a time * Update fork DAA score * Don't ban for unexpected message type * Fix tests Co-authored-by: Michael Sutton <mikisiton2@gmail.com> Co-authored-by: Ori Newman <>
25 lines
862 B
Bash
Executable File
25 lines
862 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
FLAGS=$@
|
|
|
|
go version
|
|
|
|
go get $FLAGS -t -d ./...
|
|
# This is to bypass a go bug: https://github.com/golang/go/issues/27643
|
|
GO111MODULE=off go get $FLAGS golang.org/x/lint/golint \
|
|
honnef.co/go/tools/cmd/staticcheck
|
|
|
|
test -z "$(go fmt ./...)"
|
|
|
|
golint -set_exit_status ./...
|
|
|
|
staticcheck -checks SA4006,SA4008,SA4009,SA4010,SA5003,SA1004,SA1014,SA1021,SA1023,SA1024,SA1025,SA1026,SA1027,SA1028,SA2000,SA2001,SA2003,SA4000,SA4001,SA4003,SA4004,SA4011,SA4012,SA4013,SA4014,SA4015,SA4016,SA4017,SA4018,SA4019,SA4020,SA4021,SA4022,SA4023,SA5000,SA5002,SA5004,SA5005,SA5007,SA5008,SA5009,SA5010,SA5011,SA5012,SA6001,SA6002,SA9001,SA9002,SA9003,SA9004,SA9005,SA9006,ST1019 ./...
|
|
|
|
go build $FLAGS -o kaspad .
|
|
|
|
if [ -n "${NO_PARALLEL}" ]
|
|
then
|
|
go test -timeout 20m -parallel=1 $FLAGS ./...
|
|
else
|
|
go test -timeout 20m $FLAGS ./...
|
|
fi |