Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/dcrtime_dumpdb/dcrtime_dumpdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ var (
defaultHomeDir = dcrutil.AppDataDir("dcrtimed", false)

destination = flag.String("destination", "", "Restore destination")
dumpJSON = flag.Bool("json", false, "Dump JSON")
restore = flag.Bool("restore", false, "Restore backend, -destination is required")
dumpJSON = flag.Bool("json", true, "Dump JSON")
restore = flag.Bool("restore", false, "Restore backend from JSON dump, -destination is required")
fsRoot = flag.String("source", "", "Source directory")
testnet = flag.Bool("testnet", false, "Use testnet port")
)
Expand Down
Loading