Skip to content

Commit

Permalink
chore: sync out
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Dec 6, 2024
1 parent eb2a303 commit c4673e0
Show file tree
Hide file tree
Showing 30 changed files with 30 additions and 30 deletions.
2 changes: 1 addition & 1 deletion out/DelegatorFactory.t.sol/DelegatorFactoryTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/DelegatorHints.sol/BaseDelegatorHints.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/DelegatorHints.sol/FullRestakeDelegatorHints.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/DelegatorHints.sol/NetworkRestakeDelegatorHints.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/DelegatorHints.sol/OperatorSpecificDelegatorHints.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/Slasher.t.sol/SlasherHintsHelper.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/Slasher.t.sol/SlasherTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/SlasherFactory.t.sol/SlasherFactoryTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/SlasherHints.sol/BaseSlasherHints.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/SlasherHints.sol/SlasherHints.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/SlasherHints.sol/VetoSlasherHints.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/Vault.sol/Vault.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/Vault.t.sol/VaultTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultConfigurator.sol/VaultConfigurator.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultConfigurator.t.sol/VaultConfiguratorTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultFactory.t.sol/VaultFactoryTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultHints.sol/VaultHints.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultStorage.sol/VaultStorage.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultTokenized.sol/VaultTokenized.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VaultTokenized.t.sol/VaultTokenizedTest.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VetoSlasher.t.sol/VetoSlasherHintsHelper.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion out/VetoSlasher.t.sol/VetoSlasherTest.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ contract OperatorNetworkSpecificDelegator is BaseDelegator, IOperatorNetworkSpec
}

function _setMaxNetworkLimit(bytes32 subnetwork, uint256 amount) internal override {
if (msg.sender != network) {
if (network != subnetwork.network()) {
revert InvalidNetwork();
}
_maxNetworkLimit[subnetwork].push(Time.timestamp(), amount);
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/vault/VaultStorage.sol
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,6 @@ abstract contract VaultStorage is StaticDelegateCallable, IVaultStorage {
) public view returns (uint256) {
return _activeSharesOf[account].latest();
}

uint256[50] private __gap;
}

0 comments on commit c4673e0

Please sign in to comment.