File tree Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Expand file tree Collapse file tree 6 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 1
1
target /
2
2
.gitsecret /keys /random_seed
3
3
! * .secret
4
- src /test /files /PublicKey.pem
Original file line number Diff line number Diff line change 1
- src/test/files/PublicKey.pem:1 bd23604562a2f5cd042b330f2ba6581463dcaf59c65ca75b4ac9178947c83fa
Original file line number Diff line number Diff line change
1
+ -----BEGIN PUBLIC KEY-----
2
+ MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAmm8HzASM58ZMT237SR/h
3
+ LK6Ggxj8PXBwNknow2csna/3p1O4+dOLWwOvDl7fBSCOvpU0AtUfnsL66zLf+kBd
4
+ cPY72E9ZnrHS4LmkJ6+J49U08swo9zTsxXjMV+gbB0G/gky1tdWn1GA56axAlFgc
5
+ RNgYLaJKb2frulg/qBo7Gy8uONCUiD9IchEIvVxR1M6ZJ8Cx+lb4FFWpJO+QjKh+
6
+ at1v3Q0De+BTu2pC9GKU4OMC9n4+RPE1TnsNT159o8CxAHuLvGIC2NF0SbIKNpAq
7
+ EbyC6HR1QaivDCB9qTWht2pJmEY2SJTCTwp6GC6iwL3vpOEXr9yYdLFRy/1yyIly
8
+ NwIDAQAB
9
+ -----END PUBLIC KEY-----
Original file line number Diff line number Diff line change @@ -19,14 +19,13 @@ public class AppTest
19
19
Callback callback ;
20
20
Tfprotocol tfprotocol ;
21
21
public AppTest (){
22
- this .callback = new Callback ();
23
- // Get current path
22
+ this .callback = new Callback (); // Get current path
24
23
String path = System .getProperty ("basedir" );
25
24
try {
26
25
FileInputStream fis = new FileInputStream (this .joinPaths (path , "src/test/files/PublicKey.pem" ));
27
26
this .tfprotocol = new Tfprotocol (
28
27
"localhost" ,
29
- 10345 ,
28
+ 10346 ,
30
29
fis ,
31
30
"testhash" ,
32
31
36 ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ public RPCProxyTest(){
25
25
FileInputStream fis = new FileInputStream (this .joinPaths (path , "src/test/files/PublicKey.pem" ));
26
26
this .proxy = new XSRPCProxy (
27
27
"localhost" ,
28
- 10345 ,
28
+ 10346 ,
29
29
fis ,
30
30
"testhash" ,
31
31
36 ,
You can’t perform that action at this time.
0 commit comments