This repository was archived by the owner on Feb 3, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +248
-72
lines changed Expand file tree Collapse file tree 3 files changed +248
-72
lines changed Original file line number Diff line number Diff line change 34
34
cargo +nightly-2023-10-24 fmt -- --check
35
35
36
36
- name : Check docs
37
- run : cargo +nightly-2023-10-24 doc
37
+ run : cargo +nightly-2023-10-24 doc --exclude mutiny-server --workspace
38
+
39
+ - name : Check docs server
40
+ run : cargo +nightly-2023-10-24 doc --target x86_64-unknown-linux-gnu -p mutiny-server
38
41
39
42
website :
40
43
name : Build WASM binary
Original file line number Diff line number Diff line change @@ -71,8 +71,11 @@ async fn main() -> anyhow::Result<()> {
71
71
. route ( "/newaddress" , get ( routes:: new_address) )
72
72
. route ( "/sendtoaddress" , post ( routes:: send_to_address) )
73
73
. route ( "/openchannel" , post ( routes:: open_channel) )
74
+ . route ( "/closechannel" , post ( routes:: close_channel) )
74
75
. route ( "/createinvoice" , post ( routes:: create_invoice) )
75
76
. route ( "/payinvoice" , post ( routes:: pay_invoice) )
77
+ . route ( "/payments/incoming" , get ( routes:: get_incoming_payments) )
78
+ . route ( "/payment/:paymentHash" , get ( routes:: get_payment) )
76
79
. route ( "/balance" , get ( routes:: get_balance) )
77
80
. route ( "/getinfo" , get ( routes:: get_node_info) )
78
81
. fallback ( fallback)
You can’t perform that action at this time.
0 commit comments