Skip to content

Commit 6bebaab

Browse files
committed
chore: reorder var order
1 parent 11c78c4 commit 6bebaab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/TWA.vy

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ MAX_SNAPSHOTS: constant(uint256) = 10**18 # 31.7 billion years if snapshot ever
5151
################################################################
5252

5353

54-
snapshots: public(DynArray[Snapshot, MAX_SNAPSHOTS])
5554
min_snapshot_dt_seconds: public(uint256) # Minimum time between snapshots in seconds
5655
twa_window: public(uint256) # Time window in seconds for TWA calculation
5756
last_snapshot_timestamp: public(uint256) # Timestamp of the last snapshot
57+
snapshots: public(DynArray[Snapshot, MAX_SNAPSHOTS])
5858

5959

6060
struct Snapshot:

0 commit comments

Comments
 (0)