Merge pull request #3360 from tyzbit/3357_start-time

rpcserver: startTime defaults to the unix epoch
This commit is contained in:
Olaoluwa Osuntokun
2019-10-07 16:48:23 -07:00
committed by GitHub
2 changed files with 6 additions and 7 deletions

View File

@@ -16,6 +16,7 @@ import (
"strings"
"sync"
"syscall"
"time"
"github.com/btcsuite/btcd/chaincfg/chainhash"
"github.com/btcsuite/btcd/wire"
@@ -3582,6 +3583,9 @@ func forwardingHistory(ctx *cli.Context) error {
return fmt.Errorf("unable to decode start_time %v", err)
}
args = args.Tail()
default:
now := time.Now()
startTime = uint64(now.Add(-time.Hour * 24).Unix())
}
switch {