-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4870ad0
commit 6874410
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule hold
updated
31 files
+3 −3 | .github/workflows/ci.yml | |
+89 −0 | CHANGELOG.md | |
+358 −236 | Cargo.lock | |
+19 −19 | Cargo.toml | |
+9 −6 | Makefile | |
+2 −1 | build.rs | |
+93 −0 | cliff.toml | |
+2 −0 | migrations/2024-12-29-234029_settled_at/down.sql | |
+2 −0 | migrations/2024-12-29-234029_settled_at/up.sql | |
+2 −0 | migrations_postgres/2024-12-29-234029_settled_at/down.sql | |
+2 −0 | migrations_postgres/2024-12-29-234029_settled_at/up.sql | |
+17 −1 | protos/hold.proto | |
+1 −1 | regtest | |
+44 −0 | src/commands/clean.rs | |
+3 −0 | src/commands/list.rs | |
+2 −0 | src/commands/mod.rs | |
+55 −6 | src/database/helpers/invoice_helper.rs | |
+14 −1 | src/database/model.rs | |
+1 −0 | src/database/schema.rs | |
+4 −0 | src/grpc/server.rs | |
+77 −5 | src/grpc/service.rs | |
+4 −0 | src/grpc/transformers.rs | |
+15 −5 | src/handler.rs | |
+5 −2 | src/main.rs | |
+16 −9 | src/settler.rs | |
+1 −0 | tests-regtest/.python-version | |
+72 −0 | tests-regtest/hold/regtest_grpc.py | |
+31 −1 | tests-regtest/hold/regtest_rpc.py | |
+0 −655 | tests-regtest/poetry.lock | |
+11 −16 | tests-regtest/pyproject.toml | |
+483 −0 | tests-regtest/uv.lock |