Skip to content

Commit

Permalink
Happy Thoralf noises
Browse files Browse the repository at this point in the history
  • Loading branch information
thibault-martinez committed Mar 28, 2024
1 parent bb0ff3f commit 5bd77d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bindings/nodejs/lib/types/wallet/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ export interface NftSyncOptions {

/** Options to filter outputs */
export interface FilterOptions {
/** Filter all outputs where the included slot is below the specified slot */
/** Include all outputs where the included slot is below the specified slot */
includedBelowSlot?: SlotIndex;
/** Filter all outputs where the included slot is above the specified slot */
/** Include all outputs where the included slot is above the specified slot */
includedAboveSlot?: SlotIndex;
/** Filter all outputs for the provided types (Basic = 3, Account = 4, Foundry = 5, NFT = 6) */
outputTypes?: number[];
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/wallet/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ use crate::{
#[derive(Debug, Default, Clone, Serialize, Deserialize, Eq, PartialEq)]
#[serde(rename_all = "camelCase")]
pub struct FilterOptions {
/// Filter all outputs where the included slot is below the specified slot.
/// Include all outputs where the included slot is below the specified slot.
pub included_below_slot: Option<SlotIndex>,
/// Filter all outputs where the included slot is above the specified slot.
/// Include all outputs where the included slot is above the specified slot.
pub included_above_slot: Option<SlotIndex>,
/// Filter all outputs for the provided types (Basic = 3, Account = 4, Foundry = 5, NFT = 6).
pub output_types: Option<Vec<u8>>,
Expand Down

0 comments on commit 5bd77d9

Please sign in to comment.