Skip to content

Commit

Permalink
fix since nameing
Browse files Browse the repository at this point in the history
  • Loading branch information
Evanfeenstra committed Apr 22, 2024
1 parent de07e08 commit cde7097
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions sphinx-ffi/src/auto.rs
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ pub fn fetch_payments(
seed: String,
unique_time: String,
full_state: Vec<u8>,
last_msg_idx: Option<u64>,
since: Option<u64>,
limit: Option<u32>,
scid: Option<u64>,
remote_only: Option<bool>,
Expand All @@ -579,7 +579,7 @@ pub fn fetch_payments(
&seed,
&unique_time,
&full_state,
last_msg_idx,
since,
limit,
scid,
remote_only,
Expand Down
2 changes: 1 addition & 1 deletion sphinx-ffi/src/sphinxrs.udl
Original file line number Diff line number Diff line change
Expand Up @@ -210,5 +210,5 @@ namespace sphinxrs {
[Throws=SphinxError]
RunReturn fetch_first_msgs_per_key(string seed, string unique_time, bytes state, u64 last_msg_idx, u32? limit, boolean? reverse);
[Throws=SphinxError]
RunReturn fetch_payments(string seed, string unique_time, bytes state, u64? last_msg_idx, u32? limit, u64? scid, boolean? remote_only, u64? min_msat);
RunReturn fetch_payments(string seed, string unique_time, bytes state, u64? since, u32? limit, u64? scid, boolean? remote_only, u64? min_msat);
};

0 comments on commit cde7097

Please sign in to comment.