@rev-net/core-v6 0.0.31 → 0.0.32
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.
- package/package.json +1 -1
- package/src/REVDeployer.sol +1 -0
- package/src/REVOwner.sol +1 -0
package/package.json
CHANGED
package/src/REVDeployer.sol
CHANGED
|
@@ -1065,6 +1065,7 @@ contract REVDeployer is ERC2771Context, IREVDeployer, IERC721Receiver {
|
|
|
1065
1065
|
uint256 cashOutDelay = block.timestamp + CASH_OUT_DELAY;
|
|
1066
1066
|
|
|
1067
1067
|
// Store the cash out delay in the owner contract.
|
|
1068
|
+
// slither-disable-next-line reentrancy-events
|
|
1068
1069
|
REVOwner(OWNER).setCashOutDelayOf({revnetId: revnetId, cashOutDelay: cashOutDelay});
|
|
1069
1070
|
|
|
1070
1071
|
emit SetCashOutDelay({revnetId: revnetId, cashOutDelay: cashOutDelay, caller: _msgSender()});
|
package/src/REVOwner.sol
CHANGED
|
@@ -233,6 +233,7 @@ contract REVOwner is IJBRulesetDataHook, IJBCashOutHook {
|
|
|
233
233
|
|
|
234
234
|
// Let the buyback hook adjust the cash out parameters and optionally return a hook specification.
|
|
235
235
|
JBCashOutHookSpecification[] memory buybackHookSpecifications;
|
|
236
|
+
// slither-disable-next-line unused-return
|
|
236
237
|
(cashOutTaxRate, cashOutCount,,, buybackHookSpecifications) =
|
|
237
238
|
BUYBACK_HOOK.beforeCashOutRecordedWith(buybackHookContext);
|
|
238
239
|
|