File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
contracts/prebuilts/unaudited/checkout Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ contract PRBProxyRegistryModified is IPRBProxyRegistry {
84
84
address envoy ,
85
85
address target
86
86
) external view returns (bool permission ) {
87
- permission = _permissions[owner][envoy][target ] || _permissions[owner][envoy][MAGIC_TARGET ];
87
+ permission = _permissions[owner][envoy][MAGIC_TARGET ] || _permissions[owner][envoy][target ];
88
88
}
89
89
90
90
/// @inheritdoc IPRBProxyRegistry
@@ -93,7 +93,7 @@ contract PRBProxyRegistryModified is IPRBProxyRegistry {
93
93
address envoy ,
94
94
address target
95
95
) external view returns (bool permission ) {
96
- permission = _permissions[proxy.owner ()][envoy][target ] || _permissions[proxy.owner ()][envoy][MAGIC_TARGET ];
96
+ permission = _permissions[proxy.owner ()][envoy][MAGIC_TARGET ] || _permissions[proxy.owner ()][envoy][target ];
97
97
}
98
98
99
99
/// @inheritdoc IPRBProxyRegistry
You can’t perform that action at this time.
0 commit comments