We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent775f0bd commit4994aefCopy full SHA for 4994aef
main.cpp
@@ -267,9 +267,9 @@ void reconstructAdd(Secp256K1 *secp, string fileName, string outputFile, string
267
string addr;
268
string partialPrivAddr;
269
270
-if (lines[i].substr(0,10) =="Pub Addr:") {
+if (lines[i].substr(0,12) =="PubAddress:") {
271
272
- addr = lines[i].substr(10);
+ addr = lines[i].substr(12);
273
274
switch (addr.data()[0]) {
275
case'1':
@@ -286,7 +286,7 @@ void reconstructAdd(Secp256K1 *secp, string fileName, string outputFile, string
286
}
287
288
}else {
289
-printf("Invalid partialkey info file at line %d (\"Pub Addr:\" expected)\n",i);
+printf("Invalid partialkey info file at line %d (\"PubAddress:\" expected)\n",i);
290
exit(-1);
291
292