Send a close message when METADAPT-A transactions close

This commit is contained in:
Sasha Koshka 2025-04-25 18:19:43 -04:00
parent 7a0bf64c17
commit c0bfcc02f7

View File

@ -183,6 +183,7 @@ func (this *transA) Close() error {
func (this *transA) closeDontUnlist() error {
this.Send(closeMethod, nil)
this.parent.sendMessageSafe(this.id, 0xFFFF, nil)
return this.incoming.Close()
}