Skip to content

Commit

Permalink
rename AbstractDecryptionReceiver (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
L0GYKAL authored Nov 9, 2024
1 parent 39c48ac commit 0410233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/src/AbstractDecryptionReceiver.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -12,4 +12,4 @@ abstract contract AbstractRandomnessReceiver {
if (msg.sender != DECRYPTION_PROVIDER) revert NotAuthorizedDecryptionProvider();
_;
}
}
}

0 comments on commit 0410233

Please sign in to comment.