Commit 17d0965 1 parent e1e4e16 commit 17d0965 Copy full SHA for 17d0965
File tree 1 file changed +10
-2
lines changed
src/modules/fundingManager/oracle
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ contract FM_PC_ExternalPrice_Redeeming_v1 is
224
224
_setMaxProjectSellFee (maxSellFee_);
225
225
226
226
// Set direct operations only flag.
227
- setIsDirectOperationsOnly (isDirectOperationsOnly_);
227
+ _setIsDirectOperationsOnly (isDirectOperationsOnly_);
228
228
}
229
229
230
230
// -------------------------------------------------------------------------
@@ -443,12 +443,20 @@ contract FM_PC_ExternalPrice_Redeeming_v1 is
443
443
public
444
444
onlyOrchestratorAdmin
445
445
{
446
- _isDirectOperationsOnly = isDirectOperationsOnly_;
446
+ _setIsDirectOperationsOnly ( isDirectOperationsOnly_) ;
447
447
}
448
448
449
449
// -------------------------------------------------------------------------
450
450
// Internal Functions
451
451
452
+ /// @notice Sets the value of the `isDirectOperationsOnly` flag.
453
+ /// @param isDirectOperationsOnly_ The new value of the flag.
454
+ function _setIsDirectOperationsOnly (bool isDirectOperationsOnly_ )
455
+ internal
456
+ {
457
+ _isDirectOperationsOnly = isDirectOperationsOnly_;
458
+ }
459
+
452
460
/// @notice Creates and emits a new redemption order.
453
461
/// @dev This function wraps the `_createAndEmitOrder` internal function
454
462
/// with specified parameters to handle the transaction and direct
You can’t perform that action at this time.
0 commit comments