2015-12-26 09:11:39 +03:00
|
|
|
package lnwallet
|
2015-12-30 01:04:23 +03:00
|
|
|
|
2016-10-15 16:45:51 +03:00
|
|
|
// Config is a struct which houses configuration parameters which modify the
|
|
|
|
// behaviour of LightningWallet.
|
2015-12-30 01:04:23 +03:00
|
|
|
type Config struct {
|
2016-08-13 01:29:38 +03:00
|
|
|
// 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
|
|
|
|
//
|
2015-12-30 01:04:23 +03:00
|
|
|
}
|