Merge pull request #3568 from cfromknecht/correct-static-remote-key-feature-bits

lnwire/features: static_remote_key bits, 10/11 -> 12/13
This commit is contained in:
Olaoluwa Osuntokun 2019-10-03 12:14:40 -07:00 committed by GitHub
commit 450e5a7df4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -58,12 +58,12 @@ const (
// StaticRemoteKeyRequired is a required feature bit that signals that
// within one's commitment transaction, the key used for the remote
// party's non-delay output should not be tweaked.
StaticRemoteKeyRequired FeatureBit = 10
StaticRemoteKeyRequired FeatureBit = 12
// StaticRemoteKeyOptional is an optional feature bit that signals that
// within one's commitment transaction, the key used for the remote
// party's non-delay output should not be tweaked.
StaticRemoteKeyOptional FeatureBit = 11
StaticRemoteKeyOptional FeatureBit = 13
// maxAllowedSize is a maximum allowed size of feature vector.
//