Skip to content

Commit

Permalink
Fix constant visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
dglowinski committed May 19, 2024
1 parent af7a883 commit 91ba53b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EVault/shared/types/Snapshot.sol
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ struct Snapshot {
/// @author Euler Labs (https://www.eulerlabs.com/)
/// @notice Library for working with the `Snapshot` struct
library SnapshotLib {
uint32 constant STAMP = 1; // non zero initial value of the snapshot slot to save gas on SSTORE
uint32 private constant STAMP = 1; // non zero initial value of the snapshot slot to save gas on SSTORE

function set(Snapshot storage self, Assets cash, Assets borrows) internal {
self.cash = cash;
Expand Down

0 comments on commit 91ba53b

Please sign in to comment.