获取资产的当前生命周期复审

资产复审存储在资产的状态历史记录中。 可以使用 RAMAsset.getCurrentStateHistory() 来获取资产的当前复审。

//Get the current state history
  RAMStateHistory stateHistory = newAsset.getCurrentStateHistory();
//Get the comments from the state history
  RAMVote[] votes = stateHistory.getVotes()

反馈