Skip to content

Commit

Permalink
fix: using pragma version in boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
PatrickAlphaC committed Sep 20, 2024
1 parent 1f7679b commit 315400e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion moccasin/constants/file_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"""

COUNTER_VYPER_CONTRACT_SRC = """# SPDX-License-Identifier: MIT
# @version 0.4.0
# pragma version 0.4.0
number: public(uint256)
Expand Down
2 changes: 1 addition & 1 deletion tests/data/complex_project/contracts/Counter.vy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
# @version 0.4.0
# pragma version 0.4.0

number: public(uint256)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
# @version 0.4.0
# pragma version 0.4.0

DECIMALS: immutable(uint8)
latestAnswer: public(int256)
Expand Down
2 changes: 1 addition & 1 deletion tests/data/installation_project/src/Counter.vy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
# @version 0.4.0
# pragma version 0.4.0

number: public(uint256)

Expand Down
2 changes: 1 addition & 1 deletion tests/data/zksync_project/src/Counter.vy
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# SPDX-License-Identifier: MIT
# @version 0.4.0
# pragma version 0.4.0

number: public(uint256)

Expand Down

0 comments on commit 315400e

Please sign in to comment.