This commit is contained in:
Thrilok kumar 2024-03-14 21:20:48 -04:00
parent 29c52949c3
commit 0933347a97

View File

@ -205,10 +205,10 @@ interface IFluidVaultT1 {
contract PayloadIGP12 {
uint256 public constant PROPOSAL_ID = 12;
address public constant PROPOSER_1 =
address public constant PROPOSER =
0xA45f7bD6A5Ff45D31aaCE6bCD3d426D9328cea01;
address public constant PROPOSER_2 =
address public constant PROPOSER_AVO_MULTISIG =
0x059A94A72951c0ae1cc1CE3BF0dB52421bbE8210;
IGovernorBravo public constant GOVERNOR =
@ -254,9 +254,11 @@ contract PayloadIGP12 {
function propose(string memory description) external {
require(
msg.sender == PROPOSER_1 ||
msg.sender == PROPOSER_2 ||
msg.sender == TEAM_MULTISIG,
(
msg.sender == PROPOSER ||
msg.sender == TEAM_MULTISIG
) ||
address(this) == PROPOSER_AVO_MULTISIG,
"msg.sender-not-allowed"
);