Skip to content

Fix #115, Pragma Fixed #116

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

Merged
merged 1 commit into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
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
Pragme Fixed
  • Loading branch information
TradMod authored Aug 10, 2022
commit 866c54ddfe03c9a1f6265b5e920e8791485917cf
2 changes: 1 addition & 1 deletion contracts/Semaphore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

import "./interfaces/ISemaphore.sol";
import "./interfaces/IVerifier.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/base/SemaphoreConstants.sol
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

uint256 constant SNARK_SCALAR_FIELD = 21888242871839275222246405745257275088548364400416034343698204186575808495617;
2 changes: 1 addition & 1 deletion contracts/base/SemaphoreCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

import "../interfaces/ISemaphoreCore.sol";
import "../interfaces/IVerifier.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/base/SemaphoreGroups.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

import {SNARK_SCALAR_FIELD} from "./SemaphoreConstants.sol";
import "../interfaces/ISemaphoreGroups.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/SemaphoreVoting.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

import "../interfaces/ISemaphoreVoting.sol";
import "../base/SemaphoreCore.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/extensions/SemaphoreWhistleblowing.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

import "../interfaces/ISemaphoreWhistleblowing.sol";
import "../base/SemaphoreCore.sol";
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISemaphore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title Semaphore interface.
/// @dev Interface of a Semaphore contract.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISemaphoreCore.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title SemaphoreCore interface.
/// @dev Interface of SemaphoreCore contract.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISemaphoreGroups.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title SemaphoreGroups interface.
/// @dev Interface of a SemaphoreGroups contract.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISemaphoreNullifiers.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title SemaphoreNullifiers interface.
/// @dev Interface of SemaphoreNullifiers contract.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISemaphoreVoting.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title SemaphoreVoting interface.
/// @dev Interface of SemaphoreVoting contract.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/ISemaphoreWhistleblowing.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title SemaphoreWhistleblowing interface.
/// @dev Interface of SemaphoreWhistleblowing contract.
Expand Down
2 changes: 1 addition & 1 deletion contracts/interfaces/IVerifier.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
pragma solidity 0.8.4;

/// @title Verifier interface.
/// @dev Interface of Verifier contract.
Expand Down