Skip to content

Commit

Permalink
chore: missing down migration script (#132)
Browse files Browse the repository at this point in the history
  • Loading branch information
mateuszjasiuk authored Oct 18, 2024
1 parent f91ca05 commit f28fc87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1 +1 @@
-- This file should undo anything in `up.sql`
ALTER TABLE chain_parameters DROP COLUMN cubic_slashing_window_length;
2 changes: 1 addition & 1 deletion webserver/src/response/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub fn epoch_progress(
let blocks_per_epoch =
blocks_per_epoch + (EPOCH_SWITCH_BLOCKS_DELAY as i32);

// We remove 1 to the current_block so progress resets to 0 when new epoch
// We remove 1 from the current_block so progress resets to 0 when new epoch
// starts
let current_block = current_block - 1;

Expand Down

0 comments on commit f28fc87

Please sign in to comment.