Skip to content

Commit 55f4b7d

Browse files
authored
CBST-20: misc (Commit-Boost#184)
* misc * typos
1 parent 46ee802 commit 55f4b7d

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

api/signer-api.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ paths:
186186
scheme: "ecdsa"
187187
responses:
188188
"200":
189-
description: Successs
189+
description: Success
190190
content:
191191
application/json:
192192
schema:

crates/common/src/config/constants.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
///////////////////////// COMMMON /////////////////////////
1+
///////////////////////// COMMON /////////////////////////
22

33
/// Path to the main toml config file
44
pub const CONFIG_ENV: &str = "CB_CONFIG";

crates/common/src/signer/loader.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl<'de> Deserialize<'de> for FileKey {
6565
let s = String::deserialize(deserializer)?;
6666
let s = alloy::primitives::hex::decode(s.trim_start_matches("0x"))
6767
.map_err(de::Error::custom)?;
68-
let bytes: [u8; 32] = s.try_into().map_err(|_| de::Error::custom("wrong lenght"))?;
68+
let bytes: [u8; 32] = s.try_into().map_err(|_| de::Error::custom("wrong length"))?;
6969

7070
Ok(FileKey { secret_key: bytes })
7171
}

crates/common/src/utils.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ use crate::{
2626
const MILLIS_PER_SECOND: u64 = 1_000;
2727

2828
pub fn timestamp_of_slot_start_millis(slot: u64, chain: Chain) -> u64 {
29-
let seconds_since_genesis = chain.genesis_time_sec() + slot * chain.slot_time_sec();
30-
seconds_since_genesis * MILLIS_PER_SECOND
29+
let slot_start_seconds = chain.genesis_time_sec() + slot * chain.slot_time_sec();
30+
slot_start_seconds * MILLIS_PER_SECOND
3131
}
3232
pub fn ms_into_slot(slot: u64, chain: Chain) -> u64 {
3333
let slot_start_ms = timestamp_of_slot_start_millis(slot, chain);

crates/pbs/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ pub enum PbsClientError {
1010
impl PbsClientError {
1111
pub fn status_code(&self) -> StatusCode {
1212
match self {
13-
PbsClientError::NoResponse => StatusCode::SERVICE_UNAVAILABLE,
13+
PbsClientError::NoResponse => StatusCode::BAD_GATEWAY,
1414
PbsClientError::NoPayload => StatusCode::BAD_GATEWAY,
1515
}
1616
}

crates/pbs/src/mev_boost/get_header.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ fn validate_header(
324324
return Err(ValidationError::EmptyTxRoot);
325325
}
326326

327-
if value <= minimum_bid_wei {
327+
if value < minimum_bid_wei {
328328
return Err(ValidationError::BidTooLow { min: minimum_bid_wei, got: value });
329329
}
330330

@@ -370,7 +370,7 @@ mod tests {
370370

371371
let parent_hash = B256::from_slice(&[1; 32]);
372372
let chain = Chain::Holesky;
373-
let min_bid = U256::ZERO;
373+
let min_bid = U256::from(10);
374374

375375
let secret_key = min_pk::SecretKey::from_bytes(&[
376376
0, 136, 227, 100, 165, 57, 106, 129, 181, 15, 235, 189, 200, 120, 70, 99, 251, 144,
@@ -438,7 +438,7 @@ mod tests {
438438
Err(ValidationError::BidTooLow { min: min_bid, got: U256::ZERO })
439439
);
440440

441-
mock_header.message.value = U256::from(1);
441+
mock_header.message.value = U256::from(11);
442442

443443
mock_header.message.pubkey = pubkey;
444444

crates/pbs/src/mev_boost/register_validator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async fn send_register_validator(
111111
code: code.as_u16(),
112112
};
113113

114-
// error here since we check if any success aboves
114+
// error here since we check if any success above
115115
error!(%err, "failed registration");
116116
return Err(err);
117117
};

crates/signer/src/service.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub struct SigningService;
3535

3636
#[derive(Clone)]
3737
struct SigningState {
38-
/// Mananger handling different signing methods
38+
/// Manager handling different signing methods
3939
manager: Arc<RwLock<SigningManager>>,
4040
/// Map of JWTs to module ids. This also acts as registry of all modules
4141
/// running

0 commit comments

Comments
 (0)