fix startuptime sample location
This commit is contained in:
parent
c45f4ce9f9
commit
c7b2007e9c
1 changed files with 3 additions and 1 deletions
|
@ -2628,6 +2628,8 @@ func newServer(listenAddrs, agentBlacklist, agentWhitelist []string,
|
|||
db database.DB, chainParams *chaincfg.Params,
|
||||
interrupt <-chan struct{}) (*server, error) {
|
||||
|
||||
startupTime := time.Now()
|
||||
|
||||
services := defaultServices
|
||||
if cfg.NoPeerBloomFilters {
|
||||
services &^= wire.SFNodeBloom
|
||||
|
@ -2971,7 +2973,7 @@ func newServer(listenAddrs, agentBlacklist, agentWhitelist []string,
|
|||
|
||||
s.rpcServer, err = newRPCServer(&rpcserverConfig{
|
||||
Listeners: rpcListeners,
|
||||
StartupTime: time.Now().Unix(),
|
||||
StartupTime: startupTime.Unix(),
|
||||
ConnMgr: &rpcConnManager{&s},
|
||||
SyncMgr: &rpcSyncMgr{&s, s.syncManager},
|
||||
TimeSource: s.timeSource,
|
||||
|
|
Loading…
Reference in a new issue