Skip to content
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

chore: missing down migration script #132

Merged
merged 2 commits into from
Oct 18, 2024
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
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
Loading