Skip to content

Commit

Permalink
Add Trin Execution ClientCode (#6502)
Browse files Browse the repository at this point in the history
* Add Trin Execution ClientCode
  • Loading branch information
KolbyML authored Oct 18, 2024
1 parent a074e9e commit 9f1bec6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions beacon_node/execution_layer/src/engine_api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -570,6 +570,7 @@ pub enum ClientCode {
Lodestar,
Nethermind,
Nimbus,
TrinExecution,
Teku,
Prysm,
Reth,
Expand All @@ -588,6 +589,7 @@ impl std::fmt::Display for ClientCode {
ClientCode::Lodestar => "LS",
ClientCode::Nethermind => "NM",
ClientCode::Nimbus => "NB",
ClientCode::TrinExecution => "TE",
ClientCode::Teku => "TK",
ClientCode::Prysm => "PM",
ClientCode::Reth => "RH",
Expand All @@ -611,6 +613,7 @@ impl TryFrom<String> for ClientCode {
"LS" => Ok(Self::Lodestar),
"NM" => Ok(Self::Nethermind),
"NB" => Ok(Self::Nimbus),
"TE" => Ok(Self::TrinExecution),
"TK" => Ok(Self::Teku),
"PM" => Ok(Self::Prysm),
"RH" => Ok(Self::Reth),
Expand Down

0 comments on commit 9f1bec6

Please sign in to comment.