mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00
30 lines
983 B
Go
30 lines
983 B
Go
/*
|
|
Copyright (c) 2018-2019 The kaspanet developers
|
|
Copyright (c) 2013-2018 The btcsuite developers
|
|
Copyright (c) 2015-2016 The Decred developers
|
|
Copyright (c) 2013-2014 Conformal Systems LLC.
|
|
Use of this source code is governed by an ISC
|
|
license that can be found in the LICENSE file.
|
|
|
|
Kaspad is a full-node kaspa implementation written in Go.
|
|
|
|
The default options are sane for most users. This means kaspad will work 'out of
|
|
the box' for most users. However, there are also a wide variety of flags that
|
|
can be used to control it.
|
|
|
|
Usage:
|
|
|
|
kaspad [OPTIONS]
|
|
|
|
For an up-to-date help message:
|
|
|
|
kaspad --help
|
|
|
|
The long form of all option flags (except -C) can be specified in a configuration
|
|
file that is automatically parsed when kaspad starts up. By default, the
|
|
configuration file is located at ~/.kaspad/kaspad.conf on POSIX-style operating
|
|
systems and %LOCALAPPDATA%\kaspad\kaspad.conf on Windows. The -C (--configfile)
|
|
flag can be used to override this location.
|
|
*/
|
|
package main
|