Boris Nagaev
4c2d874b8d
loopdb: use passed transaction in ExecTx calls
...
Some calls used external queries instead of the passed one,
bypassing the transaction.
2024-06-19 10:38:55 -03:00
Boris Nagaev
1947b90842
multi: typed callback in ExecTx
...
Provide a wrapped store type, exposing ExecTx method with a subset
interface in the callback argument. BaseDB interfaces in instantout,
reservation and sweepbatcher use ExecTx with their subset Querier
instead of whole sqlc.Querier (*sqlc.Queries).
This is needed to make the packages more reusable, so they don't
depend on methods of *sqlc.Queries they don't use.
2024-06-19 10:38:55 -03:00
Boris Nagaev
d341448568
loopdb: fix description of BaseDB.ExecTx
2024-06-19 10:38:55 -03:00
Boris Nagaev
3fd3fab8d1
loopdb: provide function NewSqlWriteOpts
...
It returns transaction options resulting in full (read+write) tx.
Use it in loopdb and instantout stores.
2024-06-17 12:26:37 -03:00
jinjingroad
12bc3b2e9e
chore: fix some comments
...
Signed-off-by: jinjingroad <jinjingroad@sina.com>
2024-06-05 15:12:47 +08:00
András Bánki-Horváth
55241ffe04
Merge pull request #764 from bhandras/costs-cleanup-migration
...
loop: add migration to fix stored loop out costs
2024-06-03 16:04:30 +02:00
Andras Banki-Horvath
f40ef193e9
loop: add migration for loopout swaps to fix negative stored costs
...
Previously we may have stored negative costs for some loop out swaps
which this commit attempts to correct by fetching all completed swap,
calculating the correct costs and overriding them in the database.
2024-06-03 14:54:18 +02:00
Andras Banki-Horvath
c650cdc8a8
loopdb: add ability to track manual migrations
2024-06-03 14:54:18 +02:00
Andras Banki-Horvath
4f5c806ba5
loopdb: add helper methods to update swap costs
...
This commit adds the necessary sqlc code and SwapStore function to
update swap costs for all swaps in one transaction.
2024-06-03 14:54:18 +02:00
Boris Nagaev
7a7ea05e52
sweepbatcher/Store: do not provide LoopOut field
...
This data is not used by Batcher since commit
"sweepbatcher: load swap from loopdb, not own store".
Now sweepbatcher.Store depends only on tables sweeps and sweep_batches
and does not depend on swaps, loopout_swaps and htlc_keys, making it
easier to reuse.
2024-05-31 12:28:02 -03:00
Boris Nagaev
c5862898a8
sqlc: remove trailing spaces in queries
2024-05-31 12:28:02 -03:00
Andras Banki-Horvath
939c9b4ccf
loopdb+sweepbatcher: add the DropBatch call
2024-05-24 18:44:04 +02:00
Andras Banki-Horvath
4749c029bb
loopdb: add migraton and DB code to handle payment timeout
2024-05-23 17:17:21 +02:00
Boris Nagaev
e30cb5f2a8
multi: apply make fmt
2024-04-23 15:18:15 -03:00
Andras Banki-Horvath
fb0c7f504e
loopdb: bump sqlc to 1.25.0
2024-03-20 13:57:11 +01:00
András Bánki-Horváth
65b8cb6036
Merge pull request #694 from bhandras/cost-cleanup
...
loop: fix the loopout per sweep onchain cost and cleanup server cost calculation (both loopin and loopout)
2024-03-05 15:04:27 +01:00
Andras Banki-Horvath
7fe4ee2f3b
loopdb: make sqlite sync for extra durability
2024-03-04 16:23:50 +01:00
Andras Banki-Horvath
b4ebb19a77
loopdb+sweepbatcher: add GetParentBatch and TotalSwept calls
2024-03-04 16:15:21 +01:00
Slyghtning
755d5dc68e
loopd: new loopin state for incorrect amount sweeps
2024-02-13 15:03:03 +01:00
sputn1ck
ee0309f942
instantout: add instantout store
2024-02-06 15:07:57 +01:00
George Tsagkarelis
e0d85958f7
multi: move StoreMock to loopdb
2024-01-23 20:38:06 +02:00
George Tsagkarelis
99608ad515
loopdb+sweepbatcher: add sweepbatcher store
2024-01-23 20:38:06 +02:00
sputn1ck
a29f7e4a6b
loopdb: add reservation sqlc code
2024-01-17 15:59:05 +01:00
Konstantin Nick
9f2bf5ca07
Merge pull request #682 from sputn1ck/fix_faulty_timestamps
...
Fix faulty timestamps
2024-01-04 15:13:54 +01:00
sputn1ck
d36c154151
loopdb: fix unit test
2024-01-04 15:08:20 +01:00
sputn1ck
57fa22b095
loopdb: remove unused code
2024-01-04 15:08:19 +01:00
elbandi
d6be549e17
loopdb: Fix PublicationDeadline
...
This commit fixes the publication deadline based on the swaps invoice
timestamp.
2024-01-04 15:07:32 +01:00
bitcoin-lightning
aefabfaeed
fix typo in store.go
2024-01-02 13:04:21 +08:00
bitcoin-lightning
864d4e5cdd
fix typo in sqlite.go
2024-01-02 13:03:38 +08:00
Slyghtning
0bd4b7cf89
loopdb: state insufficient confirmed funds
2023-11-27 13:46:18 +01:00
Slyghtning
0fbf253391
loopdb: abandon swap state
2023-11-24 11:09:54 +01:00
sputn1ck
b8ada0416c
loopdb: fix leapyear parsing
2023-10-31 17:08:51 +01:00
Oliver Gugger
08026dab93
multi: update linter, fix issues
2023-10-03 19:36:40 +02:00
sputn1ck
942b0dc1bb
loopdb: change faulty year migration logic
...
This commit changes how the faulty year migration works, by just
checking if the deadline is far in the future and then
fixing it.
2023-08-24 16:21:25 +02:00
kon
64bdef9238
sqldb: change time parsing function
...
This commit changes the time parsing function to use the time.Parse
function instead of the prior manual parsing. Only if the year is
far in the future, we replace it with the current year.
2023-08-24 16:09:37 +02:00
sputn1ck
5cafa34ae9
loopdb: fix timestamp parsing
2023-08-08 15:20:00 +02:00
sputn1ck
be9ca71bf2
loopd: convert unix millisecond timestamps to seconds
2023-08-08 08:42:16 +02:00
sputn1ck
f25b5e9626
loopdb: fix faulty timestamps on startup
...
This commit fixes faulty timestamps caused by using unix milliseconds
as unix seconds on startup.
This commit also adds a test for the lightning-terminal issue that first
reported the bug.
2023-08-07 21:04:30 +02:00
sputn1ck
69b4df0d9b
loopdb: add migrator
...
This commit adds a migrator to the loopdb package that manages migrating
between 2 databases
2023-06-20 18:59:31 +02:00
sputn1ck
3ee5bb6365
loopdb: add postgres store
...
This commit adds a postgres store to the loopdb package.
Ths postgres migrator uses a replacer filesystem to replace the
sqlite types to postgres types in the migration.
2023-06-20 18:59:30 +02:00
sputn1ck
ab8923fc38
loopdb: add sqlite test files
2023-06-20 18:59:25 +02:00
sputn1ck
9278c18768
loopdb: add nil check to boltdb liquidity test
...
This commit adds a nil check to the boltdb liquidity test. There was
a difference between the sqlite and boltdb implementation. This test
covers that.
2023-06-20 18:59:24 +02:00
sputn1ck
0826b748f5
loopdb: add sqlite store implementation
2023-06-20 18:59:23 +02:00
sputn1ck
f8c65bbc4c
loopdb: create base sqlite store
2023-06-20 17:31:40 +02:00
sputn1ck
206e463db7
loopdb: generate sqlc files
2023-06-20 17:31:40 +02:00
sputn1ck
85a757f635
loopdb: implement sqlite queries
2023-06-20 17:31:40 +02:00
sputn1ck
3c58e98a0f
loopdb: add loopdb sqlite migrations
2023-06-20 17:31:39 +02:00
sputn1ck
5d9d7c5c6e
loopdb: add batch insert
...
This commit adds a batch insert to the interface. This greatly reduces
the time the migration will take. It is not implemented for the boltdb, as
we will not be supporting migrating to the boltdb.
2023-06-20 14:06:05 +02:00
sputn1ck
becc8a38d8
multi: use context in loopdb call
...
This commit adds a context to our loopdb interface, which we should use
in the sqlite migration.
2023-06-19 12:28:32 +02:00
sputn1ck
960a78be3d
protocol: set musig2 to be the stable version
...
This commit changes the stable protocol version to be the Musig2 protocol.
The experimental version is set to the stable version
in order for the flag to still work if a user has it set.
2023-04-25 17:26:01 +02:00