diff --git a/contracts/src/AbstractDecryptionReceiver.sol b/contracts/src/AbstractDecryptionReceiver.sol index d8cfba9..2753252 100644 --- a/contracts/src/AbstractDecryptionReceiver.sol +++ b/contracts/src/AbstractDecryptionReceiver.sol @@ -3,7 +3,7 @@ pragma solidity 0.8.24; import {IDecryptionReceiver} from "./IDecryptionReceiver.sol"; -abstract contract AbstractRandomnessReceiver { +abstract contract AbstractDecryptionReceiver { address public immutable DECRYPTION_PROVIDER = 0x4633bbdb16153B325bbcef4Baa770d718Eb552b8; error NotAuthorizedDecryptionProvider(); @@ -12,4 +12,4 @@ abstract contract AbstractRandomnessReceiver { if (msg.sender != DECRYPTION_PROVIDER) revert NotAuthorizedDecryptionProvider(); _; } -} \ No newline at end of file +}