You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
block_number_to = match deployment_details.start_block{
131
+
Some(block) => block.number,
132
+
None => 0,
133
+
};
134
+
}
135
+
136
+
if block_number_to < deployment_details.earliest_block_number + ENV_VARS.reorg_threshold()
137
+
&& !start_block
138
+
{
137
139
bail!(
138
140
"The block number {} is not safe to rewind to for deployment {}. The earliest block number of this deployment is {}. You can only safely rewind to block number {}",
0 commit comments