Skip to content

Commit 5d661bd

Browse files
committed
use 1 for the default starting block
1 parent f79ea0a commit 5d661bd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fe/src/api_docs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub async fn index(State(state): State<web::State>) -> Result<Html<String>, shar
1111
.into_iter()
1212
.filter(|c| c.enabled)
1313
.map(|mut c| {
14-
c.start_block = Some(c.start_block.unwrap_or(0));
14+
c.start_block = Some(c.start_block.unwrap_or(1));
1515
c
1616
})
1717
.collect::<Vec<_>>();

0 commit comments

Comments
 (0)