diff --git a/stellar_rust_sdk/src/operations/operations_for_account_request.rs b/stellar_rust_sdk/src/operations/operations_for_account_request.rs index ede0c2d..7b2a598 100644 --- a/stellar_rust_sdk/src/operations/operations_for_account_request.rs +++ b/stellar_rust_sdk/src/operations/operations_for_account_request.rs @@ -33,50 +33,6 @@ impl OperationsForAccountRequest { OperationsForAccountRequest::default() } - // /// Sets the cursor for pagination. - // /// - // /// # Arguments - // /// * `cursor` - A `u32` value pointing to a specific location in a collection of responses. - // /// - // pub fn set_cursor(self, cursor: u32) -> Result { - // if cursor < 1 { - // return Err("cursor must be greater than or equal to 1".to_string()); - // } - - // Ok(OperationsForAccountRequest { - // cursor: Some(cursor), - // ..self - // }) - // } - - // /// Sets the maximum number of records to return. - // /// - // /// # Arguments - // /// * `limit` - A `u8` value specifying the maximum number of records. Range: 1 to 200. Defaults to 10. - // /// - // pub fn set_limit(self, limit: u8) -> Result { - // if limit < 1 || limit > 200 { - // return Err("limit must be between 1 and 200".to_string()); - // } - - // Ok(OperationsForAccountRequest { - // limit: Some(limit), - // ..self - // }) - // } - - // /// Sets the order of the returned records. - // /// - // /// # Arguments - // /// * `order` - An [`Order`] enum value specifying the order (ascending or descending). - // /// - // pub fn set_order(self, order: Order) -> OperationsForAccountRequest { - // OperationsForAccountRequest { - // order: Some(order), - // ..self - // } - // } - /// Sets whether to include failed operations in the response. /// /// # Arguments