wathtower/blob+wtserver: support anchor sessions
This commit is contained in:
parent
069296c46c
commit
3856acce50
@ -140,6 +140,7 @@ func (t Type) String() string {
|
||||
var supportedTypes = map[Type]struct{}{
|
||||
TypeAltruistCommit: {},
|
||||
TypeRewardCommit: {},
|
||||
TypeAltruistAnchorCommit: {},
|
||||
}
|
||||
|
||||
// IsSupportedType returns true if the given type is supported by the package.
|
||||
|
@ -123,6 +123,12 @@ func TestSupportedTypes(t *testing.T) {
|
||||
t.Fatalf("default type %s is not supported", blob.TypeAltruistCommit)
|
||||
}
|
||||
|
||||
// Assert that the altruist anchor commit types are supported.
|
||||
if !blob.IsSupportedType(blob.TypeAltruistAnchorCommit) {
|
||||
t.Fatalf("default type %s is not supported",
|
||||
blob.TypeAltruistAnchorCommit)
|
||||
}
|
||||
|
||||
// Assert that all claimed supported types are actually supported.
|
||||
for _, supType := range blob.SupportedTypes() {
|
||||
if blob.IsSupportedType(supType) {
|
||||
|
@ -96,7 +96,10 @@ type Server struct {
|
||||
// sessions and send state updates.
|
||||
func New(cfg *Config) (*Server, error) {
|
||||
localInit := wtwire.NewInitMessage(
|
||||
lnwire.NewRawFeatureVector(wtwire.AltruistSessionsOptional),
|
||||
lnwire.NewRawFeatureVector(
|
||||
wtwire.AltruistSessionsOptional,
|
||||
wtwire.AnchorCommitOptional,
|
||||
),
|
||||
cfg.ChainHash,
|
||||
)
|
||||
|
||||
|
@ -161,6 +161,28 @@ type createSessionTestCase struct {
|
||||
}
|
||||
|
||||
var createSessionTests = []createSessionTestCase{
|
||||
{
|
||||
name: "duplicate session create altruist anchor commit",
|
||||
initMsg: wtwire.NewInitMessage(
|
||||
lnwire.NewRawFeatureVector(),
|
||||
testnetChainHash,
|
||||
),
|
||||
createMsg: &wtwire.CreateSession{
|
||||
BlobType: blob.TypeAltruistAnchorCommit,
|
||||
MaxUpdates: 1000,
|
||||
RewardBase: 0,
|
||||
RewardRate: 0,
|
||||
SweepFeeRate: 10000,
|
||||
},
|
||||
expReply: &wtwire.CreateSessionReply{
|
||||
Code: wtwire.CodeOK,
|
||||
Data: []byte{},
|
||||
},
|
||||
expDupReply: &wtwire.CreateSessionReply{
|
||||
Code: wtwire.CodeOK,
|
||||
Data: []byte{},
|
||||
},
|
||||
},
|
||||
{
|
||||
name: "duplicate session create",
|
||||
initMsg: wtwire.NewInitMessage(
|
||||
|
Loading…
Reference in New Issue
Block a user