feat (Bob): Buffer transfer proof to database when we are running a different swap (#1669)

This commit is contained in:
binarybaron 2024-06-28 21:39:30 +02:00 committed by GitHub
parent 4c9d1e8d8d
commit 23a27680a4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 193 additions and 51 deletions

View file

@ -22,4 +22,10 @@ CREATE TABLE if NOT EXISTS peer_addresses
(
peer_id TEXT NOT NULL,
address TEXT NOT NULL
);
CREATE TABLE if NOT EXISTS buffered_transfer_proofs
(
swap_id TEXT PRIMARY KEY NOT NULL,
proof TEXT NOT NULL
);