@web3dotorg/evm-slc-core-contracts 0.3.11 → 0.3.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -393,6 +393,13 @@ contract Governance is IGovernance, GovernorUpgradeable, UUPSUpgradeable {
|
|
|
393
393
|
});
|
|
394
394
|
}
|
|
395
395
|
|
|
396
|
+
function getNeutralToOperation(
|
|
397
|
+
uint256 proposalId,
|
|
398
|
+
address neutral_
|
|
399
|
+
) external view returns (bytes32) {
|
|
400
|
+
return _getGovernanceStorage().proposalState[proposalId].neutralToOperation[neutral_];
|
|
401
|
+
}
|
|
402
|
+
|
|
396
403
|
function hasVoted(uint256 proposalId, address account) external view returns (bool) {
|
|
397
404
|
GovernanceStorage storage $ = _getGovernanceStorage();
|
|
398
405
|
|