File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
beacon_node/execution_layer/src Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -570,6 +570,7 @@ pub enum ClientCode {
570
570
Lodestar ,
571
571
Nethermind ,
572
572
Nimbus ,
573
+ TrinExecution ,
573
574
Teku ,
574
575
Prysm ,
575
576
Reth ,
@@ -588,6 +589,7 @@ impl std::fmt::Display for ClientCode {
588
589
ClientCode :: Lodestar => "LS" ,
589
590
ClientCode :: Nethermind => "NM" ,
590
591
ClientCode :: Nimbus => "NB" ,
592
+ ClientCode :: TrinExecution => "TE" ,
591
593
ClientCode :: Teku => "TK" ,
592
594
ClientCode :: Prysm => "PM" ,
593
595
ClientCode :: Reth => "RH" ,
@@ -611,6 +613,7 @@ impl TryFrom<String> for ClientCode {
611
613
"LS" => Ok ( Self :: Lodestar ) ,
612
614
"NM" => Ok ( Self :: Nethermind ) ,
613
615
"NB" => Ok ( Self :: Nimbus ) ,
616
+ "TE" => Ok ( Self :: TrinExecution ) ,
614
617
"TK" => Ok ( Self :: Teku ) ,
615
618
"PM" => Ok ( Self :: Prysm ) ,
616
619
"RH" => Ok ( Self :: Reth ) ,
You can’t perform that action at this time.
0 commit comments