17 lines
434 B
Go
17 lines
434 B
Go
package lnwallet
|
|
|
|
// Config is a struct which houses configuration parameters which modify the
|
|
// behaviour of LightningWallet.
|
|
type Config struct {
|
|
// default csv time
|
|
// default cltv time
|
|
// default wait for funding time
|
|
// default wait for closure time
|
|
// min amount to accept channel
|
|
// min fee imformation
|
|
// * or possibly interface to predict fees
|
|
// max htlcs in flight?
|
|
// possible secret derivation functions
|
|
//
|
|
}
|