lnd/lnwallet/config.go

17 lines
434 B
Go
Raw Normal View History

2015-12-25 22:11:39 -08:00
package lnwallet
2015-12-29 14:04:23 -08:00
2016-10-15 06:45:51 -07:00
// Config is a struct which houses configuration parameters which modify the
// behaviour of LightningWallet.
2015-12-29 14:04:23 -08:00
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
//
2015-12-29 14:04:23 -08:00
}