..

nodiscard

[[nodiscard]] boost::optional<uint256> hashOfSeq ();

nodiscard C++17 的一个属性,意思是返回值不能被忽略,否则就会警告。
可以用在 functionclass 等声明,具体参考文档1.