lnwire: add todo for changing to SatPerKWeight for fee rates

This commit is contained in:
Johan T. Halseth
2018-02-23 10:55:51 +01:00
parent b9f09a666d
commit 2db5e56754
2 changed files with 9 additions and 1 deletions

View File

@@ -1,6 +1,8 @@
package lnwire
import "io"
import (
"io"
)
// UpdateFee is the message the channel initiator sends to the other peer if
// the channel commitment fee needs to be updated.
@@ -10,6 +12,9 @@ type UpdateFee struct {
// FeePerKw is the fee-per-kw on commit transactions that the sender of
// this message wants to use for this channel.
//
// TODO(halseth): make SatPerKWeight when fee estimation is moved to
// own package. Currently this will cause an import cycle.
FeePerKw uint32
}