We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212d341 commit 35b6cbdCopy full SHA for 35b6cbd
contracts/Orchestrator.sol
@@ -36,8 +36,8 @@ contract Orchestrator is Ownable {
36
* The Orchestrator calls rebase on the policy and notifies downstream applications.
37
* Contracts are guarded from calling, to avoid flash loan attacks on liquidity
38
* providers.
39
- * If a transaction in the transaction list reverts, it is swallowed and the remaining
40
- * transactions are executed.
+ * If a transaction in the transaction list fails, Orchestrator will stop execution
+ * and revert to prevent a gas underprice attack.
41
*/
42
function rebase() external {
43
require(msg.sender == tx.origin); // solhint-disable-line avoid-tx-origin
0 commit comments