misc: Warning fixed & comma added at addresses.json

This commit is contained in:
donosonaumczuk
2024-04-02 13:07:04 -03:00
parent 3e92ccde9b
commit 67dcc74638
2 changed files with 4 additions and 1 deletions

View File

@@ -273,6 +273,9 @@ contract PermissionlessCreator is ImmutableOwnable {
// Use call instead of transfer to provide more gas (otherwise it doesn't work with SAFE):
// https://diligence.consensys.net/blog/2019/09/stop-using-soliditys-transfer-now/
(bool success, ) = OWNER.call{value: address(this).balance}('');
if (!success) {
revert();
}
}
function addCreditProvider(address creditProvider) external onlyOwner {