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

* [NOD-652] Add selectedTip and getSelectedTip messages * [NOD-652] Remove peerSyncState.isSelectedTipKnown * [NOD-652] Do nothing on OnSelectedTip if the peer selected tip hasn't changed * [NOD-652] Handle selected tip message with block handler * [NOD-652] Add comments * [NOD-652] go mod tidy * [NOD-652] Fix TestVersion * [NOD-652] Use dag.AdjustedTime instead of dag.timeSource.AdjustedTime * [NOD-652] Create shouldQueryPeerSelectedTips and queueMsgGetSelectedTip functions * [NOD-652] Change selectedTip to selectedTipHash where needed * [NOD-652] add minDAGTimeDelay constant * [NOD-652] add comments * [NOD-652] Fix names and comments * [NOD-652] Put msg.reply push in the right place * [NOD-652] Fix comments and names
28 lines
1.1 KiB
Modula-2
28 lines
1.1 KiB
Modula-2
module github.com/kaspanet/kaspad
|
|
|
|
go 1.13
|
|
|
|
require (
|
|
github.com/btcsuite/go-socks v0.0.0-20170105172521-4720035b7bfd
|
|
github.com/btcsuite/goleveldb v1.0.0
|
|
github.com/btcsuite/websocket v0.0.0-20150119174127-31079b680792
|
|
github.com/btcsuite/winsvc v1.0.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/fsnotify/fsnotify v1.4.7 // indirect
|
|
github.com/golang/groupcache v0.0.0-20191002201903-404acd9df4cc
|
|
github.com/golang/protobuf v1.3.2 // indirect
|
|
github.com/hpcloud/tail v1.0.0 // indirect
|
|
github.com/jessevdk/go-flags v1.4.0
|
|
github.com/jrick/logrotate v1.0.0
|
|
github.com/kr/pretty v0.1.0 // indirect
|
|
github.com/pkg/errors v0.8.1
|
|
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
|
|
golang.org/x/net v0.0.0-20190620200207-3b0461eec859 // indirect
|
|
golang.org/x/sys v0.0.0-20190426135247-a129542de9ae // indirect
|
|
golang.org/x/text v0.3.2 // indirect
|
|
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
|
|
gopkg.in/fsnotify.v1 v1.4.7 // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
gopkg.in/yaml.v2 v2.2.2 // indirect
|
|
)
|