File tree Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Expand file tree Collapse file tree 1 file changed +6
-13
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,6 @@ export class SolanaProgramVerificationTool extends Tool {
39
39
40
40
return JSON . stringify ( {
41
41
status : "success" ,
42
- message : "Program verification completed" ,
43
42
details : {
44
43
programId : parsedInput . programId ,
45
44
repository : parsedInput . github ,
@@ -48,17 +47,12 @@ export class SolanaProgramVerificationTool extends Tool {
48
47
} ,
49
48
} ) ;
50
49
} catch ( error : any ) {
51
- // Return error response
52
- return JSON . stringify (
53
- {
54
- status : "error" ,
55
- message : error . message ,
56
- code : error . code || "VERIFICATION_ERROR" ,
57
- details : error . stack ,
58
- } ,
59
- null ,
60
- 2 ,
61
- ) ;
50
+ return JSON . stringify ( {
51
+ status : "error" ,
52
+ message : error . message ,
53
+ code : error . code || "VERIFICATION_ERROR" ,
54
+ details : error . stack ,
55
+ } ) ;
62
56
}
63
57
}
64
58
}
@@ -102,7 +96,6 @@ export class SolanaProgramVerificationStatusTool extends Tool {
102
96
status : "error" ,
103
97
message : error . message ,
104
98
code : "STATUS_CHECK_ERROR" ,
105
- details : error . stack ,
106
99
} ) ;
107
100
}
108
101
}
You can’t perform that action at this time.
0 commit comments