diff --git a/bindings/nodejs/lib/types/models/info/node-info.ts b/bindings/nodejs/lib/types/models/info/node-info.ts index 3c520d9fb5..4d55c75da2 100644 --- a/bindings/nodejs/lib/types/models/info/node-info.ts +++ b/bindings/nodejs/lib/types/models/info/node-info.ts @@ -33,8 +33,4 @@ export interface INodeInfo { * The base token info of the node. */ baseToken: INodeInfoBaseToken; - /** - * Features supported by the node. - */ - features: string[]; } diff --git a/bindings/python/iota_sdk/types/node_info.py b/bindings/python/iota_sdk/types/node_info.py index 64dc0648bc..5ce1bf2ad4 100644 --- a/bindings/python/iota_sdk/types/node_info.py +++ b/bindings/python/iota_sdk/types/node_info.py @@ -333,9 +333,6 @@ class NodeInfo: metrics: Node metrics. protocol_parameters: Supported protocol versions by the node. base_token: Gives info about the base token the network uses. - features: The features that are supported by the node. - For example, a node could support the feature, which would allow the BIC to be included by the node account. - All features must be lowercase. """ name: str version: str @@ -343,7 +340,6 @@ class NodeInfo: metrics: NodeInfoMetrics protocol_parameters: List[ProtocolParametersResponse] base_token: NodeInfoBaseToken - features: List[str] @json diff --git a/sdk/src/types/api/core.rs b/sdk/src/types/api/core.rs index 1b139499f6..98e9dcf010 100644 --- a/sdk/src/types/api/core.rs +++ b/sdk/src/types/api/core.rs @@ -35,7 +35,6 @@ pub struct InfoResponse { pub metrics: MetricsResponse, pub protocol_parameters: ProtocolParametersMap, pub base_token: BaseTokenResponse, - pub features: Box<[String]>, } impl InfoResponse {