Skip to content

Commit

Permalink
Remove features from InfoResponse (#1878)
Browse files Browse the repository at this point in the history
* Remove features from InfoResponse

* Remove from bindings
  • Loading branch information
thibault-martinez authored Jan 24, 2024
1 parent 1e288e2 commit e9442e8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 9 deletions.
4 changes: 0 additions & 4 deletions bindings/nodejs/lib/types/models/info/node-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,4 @@ export interface INodeInfo {
* The base token info of the node.
*/
baseToken: INodeInfoBaseToken;
/**
* Features supported by the node.
*/
features: string[];
}
4 changes: 0 additions & 4 deletions bindings/python/iota_sdk/types/node_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -333,17 +333,13 @@ 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
status: NodeInfoStatus
metrics: NodeInfoMetrics
protocol_parameters: List[ProtocolParametersResponse]
base_token: NodeInfoBaseToken
features: List[str]


@json
Expand Down
1 change: 0 additions & 1 deletion sdk/src/types/api/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ pub struct InfoResponse {
pub metrics: MetricsResponse,
pub protocol_parameters: ProtocolParametersMap,
pub base_token: BaseTokenResponse,
pub features: Box<[String]>,
}

impl InfoResponse {
Expand Down

0 comments on commit e9442e8

Please sign in to comment.