From 04102335bce3172b0651b876f2f1d8a7c2cbd4cf Mon Sep 17 00:00:00 2001 From: "L0GYKAL.eth" <32228897+L0GYKAL@users.noreply.github.com> Date: Sat, 9 Nov 2024 04:51:45 +0100 Subject: [PATCH] rename AbstractDecryptionReceiver (#3) --- contracts/src/AbstractDecryptionReceiver.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}