bump fee api
This commit is contained in:
parent
67f9dfde8b
commit
169284021f
12 changed files with 175 additions and 3 deletions
|
|
@ -117,7 +117,14 @@ service LightningPub {
|
|||
option (http_method) = "post";
|
||||
option (http_route) = "/api/admin/assets/liabilities";
|
||||
option (nostr) = true;
|
||||
}
|
||||
};
|
||||
|
||||
rpc BumpTx(structs.BumpTx) returns (structs.Empty) {
|
||||
option (auth_type) = "Admin";
|
||||
option (http_method) = "post";
|
||||
option (http_route) = "/api/admin/tx/bump";
|
||||
option (nostr) = true;
|
||||
};
|
||||
|
||||
rpc AddApp(structs.AddAppRequest) returns (structs.AuthApp) {
|
||||
option (auth_type) = "Admin";
|
||||
|
|
|
|||
|
|
@ -25,6 +25,13 @@ message AssetsAndLiabilitiesReq {
|
|||
optional int64 limit_providers = 4;
|
||||
}
|
||||
|
||||
message BumpTx {
|
||||
string txid = 1;
|
||||
int64 output_index = 2;
|
||||
int64 sat_per_vbyte = 3;
|
||||
}
|
||||
|
||||
|
||||
enum TrackedOperationType {
|
||||
USER = 0;
|
||||
ROOT = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue