17 lines
227 B
Go
17 lines
227 B
Go
package node
|
|
|
|
import "vppn/m"
|
|
|
|
// TODO:
|
|
var sharedStateForTesting = func() sharedState {
|
|
ss := newSharedState(
|
|
"testNet",
|
|
"http://localhost:39499",
|
|
"123",
|
|
localConfig{
|
|
PeerConfig: m.PeerConfig{},
|
|
})
|
|
|
|
return ss
|
|
}
|