Skip to content

Commit

Permalink
fix: minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
1kresh committed Dec 9, 2024
1 parent 6574c5e commit 03a5261
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/integration/SymbioticCoreConstants.sol
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ library SymbioticCoreConstants {
} else if (symbol.equal("LBTC")) {
return LBTCSupported();
} else if (symbol.equal("SWELL")) {
return LBTCSupported();
return SWELLSupported();
} else {
revert("SymbioticCoreConstants.tokenSupported(): symbol not supported");
}
Expand Down
2 changes: 1 addition & 1 deletion test/integration/SymbioticCoreInit.sol
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ contract SymbioticCoreInit is SymbioticInit, SymbioticCoreBindings {
nonce = symbioticCore.operatorVaultOptInService.nonces(operator.addr, where);
} else if (symbioticCore.networkRegistry.isEntity(where)) {
service = address(symbioticCore.operatorNetworkOptInService);
nonce = symbioticCore.operatorVaultOptInService.nonces(operator.addr, where);
nonce = symbioticCore.operatorNetworkOptInService.nonces(operator.addr, where);
} else {
revert("Invalid address for opt-in");
}
Expand Down

0 comments on commit 03a5261

Please sign in to comment.