-
Notifications
You must be signed in to change notification settings - Fork 115
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
go/oasis-node: allow km to have private peers #4821
Conversation
func (net *Network) generateTempSocketPath() string { | ||
f, err := ioutil.TempFile(env.GetRootDir().String(), "internal-*.sock") | ||
func (net *Network) generateTempSocketPath(prefix string) string { | ||
f, err := ioutil.TempFile(env.GetRootDir().String(), fmt.Sprintf("%s-internal-*.sock", prefix)) |
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 nice for debugging
Just FYI, I can't run the CI. |
c1b01c4
to
16fac68
Compare
16fac68
to
56331ac
Compare
Codecov Report
@@ Coverage Diff @@
## master #4821 +/- ##
=======================================
Coverage 66.64% 66.64%
=======================================
Files 451 452 +1
Lines 50310 50334 +24
=======================================
+ Hits 33529 33547 +18
- Misses 12620 12636 +16
+ Partials 4161 4151 -10
Continue to review full report at Codecov.
|
Private peers are libp2p peers which are added manually and are not advertised. The goal is to allow client nodes that the key manager likes to access km methods, which is used by the confidential evm paratime's signed queries.