-
Notifications
You must be signed in to change notification settings - Fork 718
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bootstrap Peers #5485
Bootstrap Peers #5485
Conversation
8d4ac7c
to
b1adda8
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing Changelog and check configuration file for any chance of being able to sync if in bootstrap mode.
b1adda8
to
f0938b7
Compare
This PR is stale because it has been open 45 days with no activity. |
f0938b7
to
8568962
Compare
This PR is stale because it has been open 45 days with no activity. |
4c6c551
to
ed19a94
Compare
bf2ad5b
to
c9fd4bd
Compare
2019cb9
to
800148d
Compare
a84e07a
to
5276ca7
Compare
5276ca7
to
14180fc
Compare
ed7040f
to
8419b9c
Compare
f5dbe65
to
1895d23
Compare
b2e3fe3
to
0efc013
Compare
} = | ||
( map (\lrp -> ( hotValency lrp | ||
, warmValency lrp | ||
, Map.fromList $ map (fmap (, trustable lrp)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is a bit ugly that we need to add this information this way. We cannot simply extend RootConfig
because that type is used in various places. A nicer way would be to provide LocalRootConfig
type:
data LocalRootConfig = LocalRootConfig
{ localRootAccessPoints :: [RelayAccessPoint]
-- ^ a list of relay access points, each of which is either an ip address
-- or domain name and a port number.
, localRootAdvertise :: PeerAdvertise,
-- ^ 'advertise' configures whether the root should be advertised through
-- gossip.
, localRootTrustable :: Bool
-- ^ ...
} deriving (Eq, Show)
0efc013
to
a1042b4
Compare
Yes, my bad! |
Description
This PR integrates: IntersectMBO/ouroboros-network#4555