blob: ec1990b5ac48e9f863d6a4f2fdc5b1880e8a6c1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
package blockinfodatabase
// Config is the BlockInfoDatabase's configuration options.
type Config struct {
DatabasePath string
}
// DefaultConfig returns the default configuration for the
// BlockInfoDatabase.
func DefaultConfig() *Config {
return &Config{DatabasePath: "./blockinfodata"}
}
|