Implement final move, link, unlink db APIs

This commit is contained in:
Mikayla 2023-09-14 20:29:29 -07:00
parent 7fa68a9aa4
commit 9afb67f2cf
No known key found for this signature in database
8 changed files with 160 additions and 174 deletions

View file

@ -1091,12 +1091,12 @@ message LinkChannel {
message UnlinkChannel {
uint64 channel_id = 1;
optional uint64 from = 2;
uint64 from = 2;
}
message MoveChannel {
uint64 channel_id = 1;
optional uint64 from = 2;
uint64 from = 2;
uint64 to = 3;
}