Skip to content
Open
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
2 changes: 1 addition & 1 deletion node/ops-morph/metricsgen/metricsgen.go
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ func ParseMetricsDir(dir string, structName string) (TemplateData, error) {
return TemplateData{}, fmt.Errorf("multiple packages found in %s", dir)
}
if len(d) == 0 {
return TemplateData{}, fmt.Errorf("no go pacakges found in %s", dir)
return TemplateData{}, fmt.Errorf("no go packages found in %s", dir)
}

// Grab the package name.
Expand Down
2 changes: 1 addition & 1 deletion node/types/batch_header.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ func (b BatchHeaderBytes) LastBlockNumber() (uint64, error) {
return binary.BigEndian.Uint64(b[249:257]), nil
}

// structed batch header for version 0
// structured batch header for version 0
type BatchHeaderV0 struct {
BatchIndex uint64
L1MessagePopped uint64
Expand Down
2 changes: 1 addition & 1 deletion prover/bin/server/src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ async fn add_pending_req(param: String) -> String {
Err(_) => return String::from("deserialize proveRequest failed"),
};
log::info!(
"recived prove request of batch_index: {:#?}, shadow: {:#?}",
"received prove request of batch_index: {:#?}, shadow: {:#?}",
prove_request.batch_index,
prove_request.shadow.unwrap_or(false)
);
Expand Down