lnwire: change the FeePerKb field to FeePerKw

This commit is contained in:
Olaoluwa Osuntokun 2017-05-16 19:06:19 -07:00
parent e689ef61dd
commit b671a50157
No known key found for this signature in database
GPG Key ID: 9CC5B105D03521A2
2 changed files with 8 additions and 8 deletions

@ -144,7 +144,7 @@ func TestLightningWireProtocol(t *testing.T) {
req := SingleFundingRequest{
ChannelType: uint8(r.Int63()),
CoinType: uint64(r.Int63()),
FeePerKb: btcutil.Amount(r.Int63()),
FeePerKw: btcutil.Amount(r.Int63()),
FundingAmount: btcutil.Amount(r.Int63()),
PushSatoshis: btcutil.Amount(r.Int63()),
CsvDelay: uint32(r.Int31()),

@ -34,11 +34,11 @@ type SingleFundingRequest struct {
// of the Bitcoin blockchain.
CoinType uint64
// FeePerKb is the required number of satoshis per KB that the
// FeePerKw is the required number of satoshis per kilo-weight that the
// requester will pay at all timers, for both the funding transaction
// and commitment transaction. This value can later be updated once the
// channel is open.
FeePerKb btcutil.Amount
FeePerKw btcutil.Amount
// FundingAmount is the number of satoshis the initiator would like
// to commit to the channel.
@ -84,7 +84,7 @@ type SingleFundingRequest struct {
// NewSingleFundingRequest creates, and returns a new empty SingleFundingRequest.
func NewSingleFundingRequest(chanID [32]byte, chanType uint8, coinType uint64,
fee btcutil.Amount, amt btcutil.Amount, delay uint32, ck,
feePerKw btcutil.Amount, amt btcutil.Amount, delay uint32, ck,
cdp *btcec.PublicKey, deliveryScript PkScript,
dustLimit btcutil.Amount, pushSat btcutil.Amount,
confDepth uint32) *SingleFundingRequest {
@ -93,7 +93,7 @@ func NewSingleFundingRequest(chanID [32]byte, chanType uint8, coinType uint64,
PendingChannelID: chanID,
ChannelType: chanType,
CoinType: coinType,
FeePerKb: fee,
FeePerKw: feePerKw,
FundingAmount: amt,
CsvDelay: delay,
CommitmentKey: ck,
@ -115,7 +115,7 @@ func (c *SingleFundingRequest) Decode(r io.Reader, pver uint32) error {
c.PendingChannelID[:],
&c.ChannelType,
&c.CoinType,
&c.FeePerKb,
&c.FeePerKw,
&c.FundingAmount,
&c.PushSatoshis,
&c.CsvDelay,
@ -136,7 +136,7 @@ func (c *SingleFundingRequest) Encode(w io.Writer, pver uint32) error {
c.PendingChannelID[:],
c.ChannelType,
c.CoinType,
c.FeePerKb,
c.FeePerKw,
c.FundingAmount,
c.PushSatoshis,
c.CsvDelay,
@ -173,7 +173,7 @@ func (c *SingleFundingRequest) MaxPayloadLength(uint32) uint32 {
// CoinType - 8 bytes
length += 8
// FeePerKb - 8 bytes
// FeePerKw - 8 bytes
length += 8
// FundingAmount - 8 bytes