omni_getactivations
omni_getactivations
调用返回待定及完成的特性激活。
Returns pending and completed feature activations.
调用参数
无
返回结果
omni_getactivations
调用返回如下描述对象:
{
"pendingactivations": [ // (array of JSON objects) 待定的特性激活清单
{
"featureid" : n, // (number) 特性ID
"featurename" : "xxxxxxxx", // (string) 特性名称
"activationblock" : n, // (number) 要激活此特性的 区块序号
"minimumversion" : n // (number) 支持此特性的最小客户端版本号
},
...
]
"completedactivations": [ // (array of JSON objects) 已完成的特性激活清单
{
"featureid" : n, // (number) 特性ID
"featurename" : "xxxxxxxx", // (string) 特性名称
"activationblock" : n, // (number) 要激活此特性的区块序号
"minimumversion" : n // (number) 支持此特性的最小客户端版本号
},
...
]
}
示例代码
~$ omnicore-cli "omni_getactivations"