Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(contracts): Add a safety check against data corruption #839

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion contracts/src/AttestationRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ contract AttestationRegistry is RouterManager {
attestationIdCounter++;
// Generate the full attestation ID, padded with the chain prefix
bytes32 id = generateAttestationId(attestationIdCounter);
assert(id != 0x0 && !isRegistered(id));
// Create attestation
attestations[id] = Attestation(
id,
Expand Down Expand Up @@ -154,6 +155,7 @@ contract AttestationRegistry is RouterManager {
attestationIdCounter++;
// Generate the full attestation ID, padded with the chain prefix
bytes32 id = generateAttestationId(attestationIdCounter);
assert(id != 0x0 && !isRegistered(id));
// Create attestation
attestations[id] = Attestation(
id,
Expand Down Expand Up @@ -345,6 +347,9 @@ contract AttestationRegistry is RouterManager {
* @return The next attestation ID
*/
function getNextAttestationId() public view returns (bytes32) {
return generateAttestationId(attestationIdCounter + 1);
uint256 nextattestationId = attestationIdCounter + 1;
bytes32 id = generateAttestationId(nextattestationId);
assert(id != 0x0 && !isRegistered(id));
return id;
}
}
Loading