Skip to content

Commit 9f1bec6

Browse files
authored
Add Trin Execution ClientCode (#6502)
* Add Trin Execution ClientCode
1 parent a074e9e commit 9f1bec6

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

beacon_node/execution_layer/src/engine_api.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,7 @@ pub enum ClientCode {
570570
Lodestar,
571571
Nethermind,
572572
Nimbus,
573+
TrinExecution,
573574
Teku,
574575
Prysm,
575576
Reth,
@@ -588,6 +589,7 @@ impl std::fmt::Display for ClientCode {
588589
ClientCode::Lodestar => "LS",
589590
ClientCode::Nethermind => "NM",
590591
ClientCode::Nimbus => "NB",
592+
ClientCode::TrinExecution => "TE",
591593
ClientCode::Teku => "TK",
592594
ClientCode::Prysm => "PM",
593595
ClientCode::Reth => "RH",
@@ -611,6 +613,7 @@ impl TryFrom<String> for ClientCode {
611613
"LS" => Ok(Self::Lodestar),
612614
"NM" => Ok(Self::Nethermind),
613615
"NB" => Ok(Self::Nimbus),
616+
"TE" => Ok(Self::TrinExecution),
614617
"TK" => Ok(Self::Teku),
615618
"PM" => Ok(Self::Prysm),
616619
"RH" => Ok(Self::Reth),

0 commit comments

Comments
 (0)