More preparations for testnet explorer

This commit is contained in:
aglkm
2024-05-20 02:33:19 +03:00
parent 38ee6500eb
commit 04fde44594
4 changed files with 9 additions and 9 deletions

View File

@@ -155,7 +155,7 @@ fn search(input: &str) -> Either<Template, Redirect> {
} else if input.len() == 64 {
return Either::Right(Redirect::to(uri!(block_header_by_hash(input))));
// Kernel hash
// Kernel
} else if input.len() == 66 {
return Either::Right(Redirect::to(uri!(kernel(input))));
}