File tree 1 file changed +2
-3
lines changed
validator/client/src/main/java/tech/pegasys/teku/validator/client/restapi/apis
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 25
25
import tech .pegasys .teku .infrastructure .restapi .endpoints .RestApiRequest ;
26
26
27
27
public class SetGraffiti extends RestApiEndpoint {
28
- public static final String ROUTE = "/eth/v1/validator/{pubkey}/graffiti" ;
29
28
30
29
public SetGraffiti () {
31
30
super (
32
- EndpointMetadata .post (ROUTE )
31
+ EndpointMetadata .post (GetGraffiti . ROUTE )
33
32
.operationId ("setGraffiti" )
34
33
.summary ("Set Graffiti" )
35
34
.description ("Set the graffiti for an individual validator." )
@@ -45,7 +44,7 @@ public SetGraffiti() {
45
44
}
46
45
47
46
@ Override
48
- public void handleRequest (RestApiRequest request ) throws JsonProcessingException {
47
+ public void handleRequest (final RestApiRequest request ) throws JsonProcessingException {
49
48
throw new NotImplementedException ("Not Implemented" );
50
49
}
51
50
}
You can’t perform that action at this time.
0 commit comments