From ce0e3e14dcde87aab994897368e1d8b26d4c1c14 Mon Sep 17 00:00:00 2001 From: wildmolasses Date: Tue, 26 Nov 2024 15:38:30 -0500 Subject: [PATCH] address feedback --- specs/fault-proof/stage-one/bond-incentives.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/specs/fault-proof/stage-one/bond-incentives.md b/specs/fault-proof/stage-one/bond-incentives.md index 5fb24a8a3..972ad8246 100644 --- a/specs/fault-proof/stage-one/bond-incentives.md +++ b/specs/fault-proof/stage-one/bond-incentives.md @@ -150,10 +150,10 @@ request. Before completing the withdrawal, it reduces the amount contained withi `withdraw(wad)` function becomes an alias for `withdraw(msg.sender, wad)`. `withdraw(guy,wad)` will not be callable when `SuperchainConfig.paused()` is `true`. Also, `withdraw(guy,wad)` is not callable when `delayedWethPaused` is `true`, unless the caller is the `owner()`. -- `DelayedWETH` has a `setDelayedWethPaused(bool)` function that allows the `owner()` address to either pause or unpause -withdrawals and transfers. -- `DelayedWETH` has a `hold()` function that allows the `owner()` address to, for any holder, give itself an allowance and -immediately `transferFrom` that allowance amount to itself. +- `DelayedWETH` has a `setDelayedWethPaused(bool)` function that allows the `SuperchainConfig.guardian()` address to either +pause or unpause withdrawals and transfers. +- `DelayedWETH` has a `hold(guy,wad)` function that allows the `owner()` address to, for any holder, give itself an allowance +and immediately `transferFrom` that allowance amount to itself. - `DelayedWETH` has a `recover()` function that allows the `owner()` address to recover any amount of ETH from the contract. - `DelayedWETH` transfers are subject to the local `delayedWethPaused` pause; users other than the owner will not be able to