Commit 2d207bd9 authored by lbeder's avatar lbeder Committed by Mark Tyneway

Convert to a constant

parent f822fb90
...@@ -71,7 +71,7 @@ contract EAS is IEAS, Semver, EIP712Verifier { ...@@ -71,7 +71,7 @@ contract EAS is IEAS, Semver, EIP712Verifier {
error WrongSchema(); error WrongSchema();
// The global schema registry. // The global schema registry.
ISchemaRegistry private immutable _schemaRegistry = ISchemaRegistry(Predeploys.SCHEMA_REGISTRY); ISchemaRegistry private constant _schemaRegistry = ISchemaRegistry(Predeploys.SCHEMA_REGISTRY);
// The global mapping between attestations and their UIDs. // The global mapping between attestations and their UIDs.
mapping(bytes32 uid => Attestation attestation) private _db; mapping(bytes32 uid => Attestation attestation) private _db;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment