summaryrefslogtreecommitdiff
path: root/27/746521d8cfbc7957f336406b8e57616ea16cfe
blob: 4bd73ce3e10526ce92fe9049f688d1c9102eb260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
Received: from sog-mx-1.v43.ch3.sourceforge.com ([172.29.43.191]
	helo=mx.sourceforge.net)
	by sfs-ml-3.v29.ch3.sourceforge.com with esmtp (Exim 4.76)
	(envelope-from <thiagocmartinsc@gmail.com>) id 1SAfZu-00085W-G3
	for bitcoin-development@lists.sourceforge.net;
	Thu, 22 Mar 2012 10:49:10 +0000
Received-SPF: pass (sog-mx-1.v43.ch3.sourceforge.com: domain of gmail.com
	designates 209.85.220.175 as permitted sender)
	client-ip=209.85.220.175;
	envelope-from=thiagocmartinsc@gmail.com;
	helo=mail-vx0-f175.google.com; 
Received: from mail-vx0-f175.google.com ([209.85.220.175])
	by sog-mx-1.v43.ch3.sourceforge.com with esmtps (TLSv1:RC4-SHA:128)
	(Exim 4.76) id 1SAfZp-0007Bk-8S
	for bitcoin-development@lists.sourceforge.net;
	Thu, 22 Mar 2012 10:49:10 +0000
Received: by vcbfl13 with SMTP id fl13so2985057vcb.34
	for <bitcoin-development@lists.sourceforge.net>;
	Thu, 22 Mar 2012 03:48:59 -0700 (PDT)
Received: by 10.52.73.102 with SMTP id k6mr2989050vdv.57.1332413339509; Thu,
	22 Mar 2012 03:48:59 -0700 (PDT)
MIME-Version: 1.0
Received: by 10.220.224.199 with HTTP; Thu, 22 Mar 2012 03:48:29 -0700 (PDT)
In-Reply-To: <8CEEE576-37DF-4101-9593-73D5FB66D52F@ceptacle.com>
References: <D55C3D18-8286-44E9-B877-6FCE7C05E980@ceptacle.com>
	<CAJSM8J0zqF2=Poknzc8R7TrTJ0DWCMBw2-K9gGhUP_Qf+J6eFg@mail.gmail.com>
	<4FF4A408-F8C9-4A50-8B13-13D3686BEB09@ceptacle.com>
	<CAJSM8J3bZYfpE9EATcYe=79s_RxvGG9BrdRQR9ivwtZnuPsL0w@mail.gmail.com>
	<CAJSM8J2nhoKsOnAeF8qBW3zOfp=sJ25sd8gnw2dMJ3GgkohDjQ@mail.gmail.com>
	<C3C58158-0DED-41A1-B4D2-BF746AFE717A@ceptacle.com>
	<CAJSM8J3255LpXbHRF+zEi0QRoM0mwuRP3FSNbSwSyz-_ge=Few@mail.gmail.com>
	<3C518667-C2A6-4D1F-988D-888964925489@ceptacle.com>
	<CAJSM8J2-+uHKJg9xjqtz785HBNY8wXtJLnw70jP0_HgNspx4Tg@mail.gmail.com>
	<AB5AEA73-93BD-440E-89F0-F0951047D71A@ceptacle.com>
	<CAJSM8J2ytXR0RSL=3+Se6mggH+pDmnkSx+CUp-bcod4qmJ3ObA@mail.gmail.com>
	<07A82C1E-AE1D-44DC-AF02-38A3D755FA35@ceptacle.com>
	<CAJSM8J15LBiT9ojrPDE1-TXqmBLXcVvAmWw0e=5nQfLtMQ42Zg@mail.gmail.com>
	<8CEEE576-37DF-4101-9593-73D5FB66D52F@ceptacle.com>
From: =?ISO-2022-JP?B?TWFydGlueCAtIBskQiU4JSchPCVgJTobKEI=?=
	<thiagocmartinsc@gmail.com>
Date: Thu, 22 Mar 2012 07:48:29 -0300
Message-ID: <CAJSM8J2Xe1EnFxKFAGdH+bx2AVgoRYMg=VsdEmvO9S=x6gbMNQ@mail.gmail.com>
To: =?ISO-8859-1?Q?Michael_Gr=F8nager?= <gronager@ceptacle.com>
Content-Type: multipart/alternative; boundary=bcaec501c5b0cba3aa04bbd2a7fd
X-Spam-Score: -0.6 (/)
X-Spam-Report: Spam Filtering performed by mx.sourceforge.net.
	See http://spamassassin.org/tag/ for more details.
	-1.5 SPF_CHECK_PASS SPF reports sender host as permitted sender for
	sender-domain
	0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider
	(thiagocmartinsc[at]gmail.com)
	-0.0 SPF_PASS               SPF: sender matches SPF record
	1.0 HTML_MESSAGE           BODY: HTML included in message
	-0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from
	author's domain
	0.1 DKIM_SIGNED            Message has a DKIM or DK signature,
	not necessarily valid
	-0.1 DKIM_VALID Message has at least one valid DKIM or DK signature
X-Headers-End: 1SAfZp-0007Bk-8S
X-Mailman-Approved-At: Thu, 22 Mar 2012 17:04:51 +0000
Cc: Bitcoin Dev <bitcoin-development@lists.sourceforge.net>
Subject: Re: [Bitcoin-development] Announcement: libcoin
X-BeenThere: bitcoin-development@lists.sourceforge.net
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: <bitcoin-development.lists.sourceforge.net>
List-Unsubscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=unsubscribe>
List-Archive: <http://sourceforge.net/mailarchive/forum.php?forum_name=bitcoin-development>
List-Post: <mailto:bitcoin-development@lists.sourceforge.net>
List-Help: <mailto:bitcoin-development-request@lists.sourceforge.net?subject=help>
List-Subscribe: <https://lists.sourceforge.net/lists/listinfo/bitcoin-development>,
	<mailto:bitcoin-development-request@lists.sourceforge.net?subject=subscribe>
X-List-Received-Date: Thu, 22 Mar 2012 10:49:10 -0000

--bcaec501c5b0cba3aa04bbd2a7fd
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hi Michael,

 NOTE: Re-add bitcoin-dev to this thread on Cc...

 I'll test this ASAP! I REALLY need this feature (blockchain server <->
wallet client).

 I just want ask you some things...

 1- How close is Libcoin with original Bitcoin? I mean, the output is a
little different, the bitcoind help output was disabled and, I'm afraid
that Libcoin can possibly being distant from Bitcoin in the future... That
can happen?!

 2- Do you have plans to update Libcoin on every new upstream Bitcoin
release? How fast will be this updates? Do you need more resources/people
working on it?


 Another questions not involved directly with Libcoin/Bitcoin but, I'll
need it for my future Bitcoin projects, and Libcoin is on my radar:

 1- Do you know about Diaspora* Project?

 2- Do you have skills in Ruby on Rails development?


Thank you!
Thiago

2012/3/3 Michael Gr=C3=B8nager <gronager@ceptacle.com>

> Hi Martin,
>
> There are a couple of options of doing similarly...
>
> In the libcoin repository you will find some code for btc and btcd, it is
> some code I wrote a while ago and it needs to be updated. It functions as=
 a
> bitcoind master and slave. The btcd keeps the blockchain, but no wallet.
> btc keeps the wallet and contact the btcd to get transaction info (like
> send an address and get its transactions or send a transaction id and get
> its details). It works (or worked when I wrote them) with the wallet.dat,
> but needs a little update.
>
> You could e.g. run one btcd on the machine and several btc instances to
> get the functionality you asked for.
>
> Further, btcd also enables a web wallet, where the private keys are store=
d
> in your browsers local-store.
>
> I will get the application updated, but most likely in a bit other setup
> as it is something I intend to marketize in the near future.
>
> Hope this answers your question.
>
> Cheers,
>
> Michael
>
> On 03/03/2012, at 02:04, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=
=E3=82=BA wrote:
>
> > Michael,
> >
> > libcoin is AWESOME! Thanks!!!
> >
> > Can I do the following scenario with libcoin ? :
> >
> > 1- Create a regular Linux user called "blockchain", with home dir
> pointed to /var/lib/libcoin/ (more or like Ubuntu/Debian mysql does);
> >
> > 2- Start "bitcoind" under user "blockchain" (the Bitcoin blockchain)
> will be downloaded to /var/lib/libcoin/bitcoin/ directory);
> >
> > 3- As another regular user, called "michael", I would like to run
> "bitcoind" too but, I do not want to re-download the blockchain to its ow=
n
> subdir, I want instead, to consult it (blockchain) through libcoin itself
> (not by socket of JSON)...
> >
> > So, the /home/michael/.bitcoin/ directory will have only wallet.dat and
> related files, not the blockchain.
> >
> > This is more or less what we can do with Bitcoin Electrum alternate
> client but, with Electrum, it copy the whole blockchain to mysql... This =
is
> terrible from my point of view, I think that there is no need to duplicat=
e
> the blockchain within MySQL in anyway.
> >
> > I just imagine a bitcoin splited in two, blockchain in one side and
> wallet in the other side.
> >
> > This is possible with libcoin?!
> >
> > Thank you again!
> >
> > Best,
> > Thiago
> >
> > 2012/2/28 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> > Hi again - and thanks for testing and finding this!
> >
> > I have fixed the bug you reported:
> >
> > The culprit was an implicit string constructor for the ChainAddress tha=
t
> caused creation of a not fully initialized ChainAddress. The right way to
> do it is using chain::getAddress(string) as the ChainAddress is chain
> specific.
> >
> > A git pull will fix it ;)
> >
> > Cheers,
> >
> > Michael
> >
> >
> > On 27/02/2012, at 20:03, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=
=E3=82=BA wrote:
> >
> >> AWESOME!! Thank you!!
> >>
> >> Anyway, I found a new problem... lol
> >>
> >> /usr/local/bin/bitcoind getinfo #okay
> >> {
> >>   "version" : 40001,
> >>   "blocks" : 168753,
> >>   "connections" : 8,
> >>   "difficulty" : 1376302.26788638,
> >>   "testnet" : false
> >> }
> >>
> >> /usr/local/bin/bitcoind getaccountaddress ""  # okay...
> >> 1J4vNcvEdeCuLH4yvyoC2gxFEF4zquoJ87
> >>
> >> /usr/local/bin/bitcoind listaccounts # NOT okay...
> >> {
> >> }
> >>
> >> /usr/local/bin/bitcoind getaccountaddress "teste" # okay
> >> 1E6pGh6AAtuJdFXheZMp1zdYmvdqAQn9QT
> >>
> >> /usr/local/bin/bitcoind listaccounts # NOT okay...
> >> {
> >>   "teste" : 0.00000000
> >> }
> >>
> >> Where is my default account listed at "listaccounts" output?!
> >>
> >> Best,
> >> Thiago
> >>
> >> 2012/2/26 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> >> And if you do an update now "help" is there too ;)
> >>
> >> /M
> >>
> >> On 25/02/2012, at 03:11, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=
=A0=E3=82=BA wrote:
> >>
> >>> Thank you!!!
> >>>
> >>> It is all working now! Except "help"...
> >>>
> >>> Nice work Michael!!
> >>>
> >>> Best,
> >>> Thiago
> >>>
> >>> 2012/2/24 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> >>> OK - didn't took the weekend:
> >>>
> >>> support for "port" is on github now :)
> >>>
> >>> Only took two lines:
> >>>
> >>>         ("port", value<unsigned short>(&port)->default_value(8333),
> "Listen on specified port for the p2p protocol")
> >>>
> >>> and using the port option in the Node constructor (was there already)=
:
> >>>
> >>>     Node node(chain, data_dir, args.count("nolisten") ? "" :
> "0.0.0.0", lexical_cast<string>(port)); // it is also here we specify the
> use of a proxy!
> >>>
> >>> /M
> >>>
> >>>
> >>>
> >>> On 24/02/2012, at 19:49, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=
=A0=E3=82=BA wrote:
> >>>
> >>>> Hi Michael,
> >>>>
> >>>> Thank you for your attention!
> >>>>
> >>>> Now, I'm trying to start libcoin's bitcoind using high ports but, it
> always try to listen at 8332, no matter what I "say"...
> >>>>
> >>>> Look:
> >>>>
> >>>> $ cat .bitcoin/bitcoin.conf
> >>>> server=3D1
> >>>> daemon=3D1
> >>>> rpcuser=3Dlibcoin
> >>>> rpcpassword=3DLibCoin13
> >>>> rpcport=3D10332
> >>>> port=3D10333
> >>>>
> >>>> But:
> >>>>
> >>>> /usr/local/bin/bitcoind
> >>>> Error: Address already in use
> >>>>
> >>>> terminate called after throwing an instance of 'DbException'
> >>>> what():  DbEnv::close: Invalid argument
> >>>> Aborted
> >>>>
> >>>> When I "strace it", I can see:
> >>>>
> >>>> ...
> >>>> bind(12, {sa_family=3DAF_INET, sin_port=3Dhtons(8333),
> sin_addr=3Dinet_addr("0.0.0.0")}, 16) =3D -1 EADDRINUSE (Address already =
in use)
> >>>> ...
> >>>>
> >>>> I already tried:
> >>>>
> >>>> /usr/local/bin/bitcoind --rpcport 10332
> >>>> /usr/local/bin/bitcoind --rpcport=3D10332
> >>>>
> >>>> Without success...
> >>>>
> >>>> Thanks again!
> >>>> Thiago
> >>>>
> >>>> 2012/2/24 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> >>>> Hi Thiago,
> >>>>
> >>>> Forgot to comment on the two latter:
> >>>>
> >>>>> $ bitcoind getaccountaddress ""
> >>>>> HTTP error code: 401
> >>>>> Error: couldn't parse reply from server
> >>>>>
> >>>>> $ bitcoind listaccounts
> >>>>> HTTP error code: 401
> >>>>> Error: couldn't parse reply from server
> >>>>>
> >>>>
> >>>> 401 =3D permission denied - you need to setup username / password
> either on the commandline or in the bicoin.conf file to access those
> commands...
> >>>>
> >>>> See in the bitcoind.cpp file for commands that you can use with and
> without auth...
> >>>>
> >>>> Those that contains an "auth" requires auth:
> >>>>
> >>>>    server.registerMethod(method_ptr(new GetBalance(wallet)), auth);
> >>>>
> >>>> As opposed to:
> >>>>
> >>>>    server.registerMethod(method_ptr(new GetInfo(node)));
> >>>>
> >>>> auth is defined by:
> >>>>
> >>>>    Auth auth(rpc_user, rpc_pass); // if rpc_user and rpc_pass are no=
t
> set, all authenticated methods becomes disallowed.
> >>>>
> >>>> so you just experience the case explained in the comment ;) I admit
> that the output could be more readable, though!
> >>>>
> >>>> /M
> >>>>
> >>>>
> >>>>>
> >>>>> Any tips?! lol
> >>>>>
> >>>>> Thanks!
> >>>>> Thiago
> >>>>>
> >>>>> 2012/2/23 Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=E3=82=BA <=
thiagocmartinsc@gmail.com>
> >>>>> AWESOME!!!
> >>>>>
> >>>>> I can compile libcoin at my Ubuntu 11.10... I just need to install:
> >>>>>
> >>>>> sudo aptitude install libboost1.46-all-dev
> >>>>>
> >>>>> ...alongside with another already installed dependencies, and now i=
t
> works!!
> >>>>>
> >>>>> Thank you!
> >>>>> Thiago
> >>>>>
> >>>>> 2012/2/23 Michael Gr=C3=B8nager <gronager@ceptacle.com>
> >>>>> Hi Martinx,
> >>>>>
> >>>>> Another note:
> >>>>>
> >>>>> boost 1.42 and openssl 1.0 has a conflict (you will see it when you
> try to compile coinHTTP with that specific combination: sslv2 has been
> removed from openssl, but boost still references it.)
> >>>>>
> >>>>> You should do a :
> >>>>>
> >>>>> sudo apt-get upgrade libboost-dev-all
> >>>>>
> >>>>> to get the 1.46.1 library
> >>>>>
> >>>>> /M
> >>>>>
> >>>>>
> >>>>> On 23/02/2012, at 18:31, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=
=83=A0=E3=82=BA wrote:
> >>>>>
> >>>>>> Hi Michael!
> >>>>>>
> >>>>>> Thank you for libcoin! It is a awesome evolution for Bitcoin and
> for the CryptoCurrencies as a hole... Thanks!!!
> >>>>>>
> >>>>>> Anyway, I am unable to compile libcoin under my Ubuntu 11.04. At
> this machine, I have compiled and running Bitcoin (from sources), Namecoi=
n,
> Devcoin, Litecoin, IXcoin and I0coin, all from sources but, when I try to
> compile libcoin, I got:
> >>>>>>
> >>>>>> ----
> >>>>>> user@desk:~/libcoin$ ./configure
> >>>>>> -- The C compiler identification is GNU
> >>>>>> -- The CXX compiler identification is GNU
> >>>>>> -- Check for working C compiler: /usr/bin/gcc
> >>>>>> -- Check for working C compiler: /usr/bin/gcc -- works
> >>>>>> -- Detecting C compiler ABI info
> >>>>>> -- Detecting C compiler ABI info - done
> >>>>>> -- Check for working CXX compiler: /usr/bin/c++
> >>>>>> -- Check for working CXX compiler: /usr/bin/c++ -- works
> >>>>>> -- Detecting CXX compiler ABI info
> >>>>>> -- Detecting CXX compiler ABI info - done
> >>>>>> -- Looking for include files CMAKE_HAVE_PTHREAD_H
> >>>>>> -- Looking for include files CMAKE_HAVE_PTHREAD_H - found
> >>>>>> -- Looking for pthread_create in pthreads
> >>>>>> -- Looking for pthread_create in pthreads - not found
> >>>>>> -- Looking for pthread_create in pthread
> >>>>>> -- Looking for pthread_create in pthread - found
> >>>>>> -- Found Threads: TRUE
> >>>>>> -- Looking for XOpenDisplay in
> /usr/lib/i386-linux-gnu/libX11.so;/usr/lib/i386-linux-gnu/libXext.so
> >>>>>> -- Looking for XOpenDisplay in
> /usr/lib/i386-linux-gnu/libX11.so;/usr/lib/i386-linux-gnu/libXext.so - fo=
und
> >>>>>> -- Looking for gethostbyname
> >>>>>> -- Looking for gethostbyname - found
> >>>>>> -- Looking for connect
> >>>>>> -- Looking for connect - found
> >>>>>> -- Looking for remove
> >>>>>> -- Looking for remove - found
> >>>>>> -- Looking for shmat
> >>>>>> -- Looking for shmat - found
> >>>>>> -- Looking for IceConnectionNumber in ICE
> >>>>>> -- Looking for IceConnectionNumber in ICE - found
> >>>>>> -- Found X11: /usr/lib/i386-linux-gnu/libX11.so
> >>>>>> -- Boost version: 1.42.0
> >>>>>> -- Found the following Boost libraries:
> >>>>>> --   date_time
> >>>>>> --   regex
> >>>>>> --   filesystem
> >>>>>> --   system
> >>>>>> --   program_options
> >>>>>> --   thread
> >>>>>> -- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libcrypto.so
> >>>>>> -- Looking for Q_WS_X11
> >>>>>> -- Looking for Q_WS_X11 - found
> >>>>>> -- Looking for Q_WS_WIN
> >>>>>> -- Looking for Q_WS_WIN - not found.
> >>>>>> -- Looking for Q_WS_QWS
> >>>>>> -- Looking for Q_WS_QWS - not found.
> >>>>>> -- Looking for Q_WS_MAC
> >>>>>> -- Looking for Q_WS_MAC - not found.
> >>>>>> -- Found Qt-Version 4.7.2 (using /usr/bin/qmake)
> >>>>>> -- Found wxWidgets: TRUE
> >>>>>>
> >>>>>> The build system is configured to install libraries to
> /usr/local/lib
> >>>>>> Your applications may not be able to find your installed libraries
> unless you:
> >>>>>> set your LD_LIBRARY_PATH (user specific) or
> >>>>>> update your ld.so configuration (system wide)
> >>>>>> You have an ld.so.conf.d directory on your system, so if you wish
> to ensure that
> >>>>>> applications find the installed libcoin libraries, system wide, yo=
u
> could install an
> >>>>>> libcoin specific ld.so configuration with:
> >>>>>> sudo make install_ld_conf
> >>>>>>
> >>>>>> -- Configuring done
> >>>>>> -- Generating done
> >>>>>> -- Build files have been written to: /home/user/libcoin
> >>>>>> ----
> >>>>>>
> >>>>>> Now I tried make, without success:
> >>>>>>
> >>>>>> ----
> >>>>>> .....
> >>>>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0xf):
> undefined reference to `BN_init'
> >>>>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0x1e):
> undefined reference to `BN_copy'
> >>>>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0x38):
> undefined reference to `BN_set_negative'
> >>>>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0x4f):
> undefined reference to `BN_clear_free'
> >>>>>> Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum const&)]+0xd3):
> undefined reference to `BN_clear_free'
> >>>>>> ../../lib/libcoin.a(Script.o): In function `operator<<(CBigNum
> const&, unsigned int)':
> >>>>>> Script.cpp:(.text._ZlsRK7CBigNumj[operator<<(CBigNum const&,
> unsigned int)]+0x16): undefined reference to `BN_init'
> >>>>>> Script.cpp:(.text._ZlsRK7CBigNumj[operator<<(CBigNum const&,
> unsigned int)]+0x2c): undefined reference to `BN_lshift'
> >>>>>> Script.cpp:(.text._ZlsRK7CBigNumj[operator<<(CBigNum const&,
> unsigned int)]+0xad): undefined reference to `BN_clear_free'
> >>>>>> ../../lib/libcoin.a(Script.o): In function `operator>>(CBigNum
> const&, unsigned int)':
> >>>>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&,
> unsigned int)]+0xf): undefined reference to `BN_init'
> >>>>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&,
> unsigned int)]+0x1e): undefined reference to `BN_copy'
> >>>>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&,
> unsigned int)]+0x47): undefined reference to `BN_clear_free'
> >>>>>> Script.cpp:(.text._ZrsRK7CBigNumj[operator>>(CBigNum const&,
> unsigned int)]+0xcb): undefined reference to `BN_clear_free'
> >>>>>> ../../lib/libcoin.a(Script.o): In function `operator!=3D(CBigNum
> const&, CBigNum const&)':
> >>>>>> Script.cpp:(.text._ZneRK7CBigNumS1_[operator!=3D(CBigNum const&,
> CBigNum const&)]+0x14): undefined reference to `BN_cmp'
> >>>>>> ../../lib/libcoin.a(Script.o): In function `operator>(CBigNum
> const&, CBigNum const&)':
> >>>>>> Script.cpp:(.text._ZgtRK7CBigNumS1_[operator>(CBigNum const&,
> CBigNum const&)]+0x14): undefined reference to `BN_cmp'
> >>>>>> ../../lib/libcoin.a(Script.o): In function `uint256
> Hash<__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned
> char, std::allocator<unsigned char> > >
> >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char,
> std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned
> char*, std::vector<unsigned char, std::allocator<unsigned char> > >)':
> >>>>>>
> Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_iteratorIPhSt6vectorIhSaI=
hEEEEE7uint256T_S8_[uint256
> Hash<__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned
> char, std::allocator<unsigned char> > >
> >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char,
> std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned
> char*, std::vector<unsigned char, std::allocator<unsigned char> >
> >)]+0x6d): undefined reference to `SHA256'
> >>>>>>
> Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_iteratorIPhSt6vectorIhSaI=
hEEEEE7uint256T_S8_[uint256
> Hash<__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned
> char, std::allocator<unsigned char> > >
> >(__gnu_cxx::__normal_iterator<unsigned char*, std::vector<unsigned char,
> std::allocator<unsigned char> > >, __gnu_cxx::__normal_iterator<unsigned
> char*, std::vector<unsigned char, std::allocator<unsigned char> >
> >)]+0xb8): undefined reference to `SHA256'
> >>>>>> collect2: ld returned 1 exit status
> >>>>>> make[2]: *** [bin/bitcoind] Error 1
> >>>>>> make[1]: ***
> [applications/bitcoind/CMakeFiles/app_bitcoind.dir/all] Error 2
> >>>>>> make: *** [all] Error 2
> >>>>>> -----
> >>>>>>
> >>>>>> What can I do?!
> >>>>>>
> >>>>>> Best,
> >>>>>> Thiago
> >>>>>>
> >>>>>>
> >>>>>> On 1 February 2012 12:18, Michael Gr=C3=B8nager <gronager@ceptacle=
.com>
> wrote:
> >>>>>> Dear Bitcoiners,
> >>>>>>
> >>>>>> libcoin is now in a state ready for its first release, which I
> would like to share with you!
> >>>>>>
> >>>>>> =3D=3D=3D libcoin is a crypto currency library based on the
> bitcoin/bitcoin "Satoshi" client. =3D=3D=3D
> >>>>>>
> >>>>>> Copenhagen, Denmark - 1st February 2012 Ceptacle announces the
> release of the first version of the crypto currency library "libcoin" bas=
ed
> on the bitcoin/bitcoin "Satoshi" client.
> >>>>>>
> >>>>>> libcoin also maintains a version of bitcoind that is a 100%
> compatible drop-in replacement of the bitcoin/bitcoind client: You can us=
e
> it on the same computer on the same files and you can call it with the sa=
me
> scripts. And you can easily extend it without touching the basic bitcoin
> source files.
> >>>>>>
> >>>>>> The libcoin/bitcoind client downloads the entire block chain 3.5
> times faster than the bitcoin/bitcoind client. This is less than 90 minut=
es
> on a modern laptop!
> >>>>>>
> >>>>>> In libcoin, the Satoshi client code has been completely refactored=
,
> properly encapsulating classes, removing all globals, moving from threads
> and mutexes to a pure asynchronous approach. Functionalities have been
> divided into logical units and libraries, minimizing dependencies for e.g=
.
> thin clients.
> >>>>>>
> >>>>>> libcoin is chain agnostic, all chain (bitcoin, testnet, namecoin,
> litecoin, ...) specific settings are maintained from a single class (Chai=
n)
> and hence experiments with chain settings, mining, security and digital
> currencies for research and educational purposes are easily accessible. S=
ee
> the ponzicoin example for how you define your own chain.
> >>>>>>
> >>>>>> The build system of libcoin is based on CMake and supports builds
> of static and dynamic libraries on Linux, Mac OS X, and Windows.
> >>>>>>
> >>>>>> The libcoin license is LGPL v. 3. This mean that you can use it in
> open source as well as in commercial projects, but improvements should go
> back into the libcoin library.
> >>>>>>
> >>>>>> =3D=3D=3D=3D=3D=3D
> >>>>>>
> >>>>>> Read more on libcoin on: http://github.com/ceptacle/libcoin/wiki
> >>>>>>
> >>>>>> Join libcoin on twitter: http://twitter.com/libcoin
> >>>>>>
> >>>>>> Download "libcoin Satoshi release":
> http://github.com/ceptacle/libcoin/zipball/v0.4.0.1
> >>>>>>
> >>>>>> Best regards,
> >>>>>>
> >>>>>> Michael Gronager, PhD
> >>>>>> Director, Ceptacle
> >>>>>> Jens Juels Gade 33
> >>>>>> 2100 Copenhagen E
> >>>>>> Mobile: +45 31 45 14 01
> >>>>>> E-mail: gronager@ceptacle.com
> >>>>>> Web: http://www.ceptacle.com/
> >>>>>>
> >>>>>>
> >>>>>>
> -------------------------------------------------------------------------=
-----
> >>>>>> Keep Your Developer Skills Current with LearnDevNow!
> >>>>>> The most comprehensive online learning library for Microsoft
> developers
> >>>>>> is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3,
> MVC3,
> >>>>>> Metro Style Apps, more. Free future releases when you subscribe no=
w!
> >>>>>> http://p.sf.net/sfu/learndevnow-d2d
> >>>>>> _______________________________________________
> >>>>>> Bitcoin-development mailing list
> >>>>>> Bitcoin-development@lists.sourceforge.net
> >>>>>> https://lists.sourceforge.net/lists/listinfo/bitcoin-development
> >>>>>>
> >>>>>
> >>>>> Michael Gronager, PhD
> >>>>> Director, Ceptacle
> >>>>> Jens Juels Gade 33
> >>>>> 2100 Copenhagen E
> >>>>> Mobile: +45 31 45 14 01
> >>>>> E-mail: gronager@ceptacle.com
> >>>>> Web: http://www.ceptacle.com/
> >>>>>
> >>>>>
> >>>>>
> >>>>
> >>>>
> >>>
> >>> Michael Gronager, PhD
> >>> Director, Ceptacle
> >>> Jens Juels Gade 33
> >>> 2100 Copenhagen E
> >>> Mobile: +45 31 45 14 01
> >>> E-mail: gronager@ceptacle.com
> >>> Web: http://www.ceptacle.com/
> >>>
> >>>
> >>
> >> Michael Gronager, PhD
> >> Director, Ceptacle
> >> Jens Juels Gade 33
> >> 2100 Copenhagen E
> >> Mobile: +45 31 45 14 01
> >> E-mail: gronager@ceptacle.com
> >> Web: http://www.ceptacle.com/
> >>
> >>
> >
> > Michael Gronager, PhD
> > Director, Ceptacle
> > Jens Juels Gade 33
> > 2100 Copenhagen E
> > Mobile: +45 31 45 14 01
> > E-mail: gronager@ceptacle.com
> > Web: http://www.ceptacle.com/
> >
> >
>
> Michael Gronager, PhD
> Director, Ceptacle
> Jens Juels Gade 33
> 2100 Copenhagen E
> Mobile: +45 31 45 14 01
> E-mail: gronager@ceptacle.com
> Web: http://www.ceptacle.com/
>
>

--bcaec501c5b0cba3aa04bbd2a7fd
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Hi Michael,<div><br></div><div>=C2=A0NOTE: Re-add bitcoin-dev to this threa=
d on Cc...</div><div><br></div><div>=C2=A0I&#39;ll test this ASAP! I REALLY=
 need this feature (blockchain server &lt;-&gt; wallet client).</div><div><=
br></div>


<div>=C2=A0I just want ask you some things...</div><div><br></div><div>=C2=
=A01- How close is Libcoin with original Bitcoin? I mean, the output is a l=
ittle different, the bitcoind help output was disabled and, I&#39;m afraid =
that Libcoin can possibly being distant from Bitcoin in the future... That =
can happen?!</div>


<div><br></div><div>=C2=A02- Do you have plans to update Libcoin on every n=
ew upstream Bitcoin release? How fast will be this updates? Do you need mor=
e resources/people working on it?</div><div><br></div><div><br></div><div>=
=C2=A0Another questions not involved directly with Libcoin/Bitcoin but, I&#=
39;ll need it for my future Bitcoin projects, and Libcoin is on my radar:</=
div>


<div><br></div><div>=C2=A01- Do you know about Diaspora* Project?</div><div=
><br></div><div>=C2=A02- Do you have skills in Ruby on Rails development?</=
div><div><br></div><div><br></div><div>Thank you!</div><div>Thiago<br><br><=
div class=3D"gmail_quote">


2012/3/3 Michael Gr=C3=B8nager <span dir=3D"ltr">&lt;<a href=3D"mailto:gron=
ager@ceptacle.com" target=3D"_blank">gronager@ceptacle.com</a>&gt;</span><b=
r><blockquote class=3D"gmail_quote" style=3D"margin:0 0 0 .8ex;border-left:=
1px #ccc solid;padding-left:1ex">


Hi Martin,<br>
<br>
There are a couple of options of doing similarly...<br>
<br>
In the libcoin repository you will find some code for btc and btcd, it is s=
ome code I wrote a while ago and it needs to be updated. It functions as a =
bitcoind master and slave. The btcd keeps the blockchain, but no wallet. bt=
c keeps the wallet and contact the btcd to get transaction info (like send =
an address and get its transactions or send a transaction id and get its de=
tails). It works (or worked when I wrote them) with the wallet.dat, but nee=
ds a little update.<br>



<br>
You could e.g. run one btcd on the machine and several btc instances to get=
 the functionality you asked for.<br>
<br>
Further, btcd also enables a web wallet, where the private keys are stored =
in your browsers local-store.<br>
<br>
I will get the application updated, but most likely in a bit other setup as=
 it is something I intend to marketize in the near future.<br>
<br>
Hope this answers your question.<br>
<br>
Cheers,<br>
<br>
Michael<br>
<div><div><br>
On 03/03/2012, at 02:04, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=A0=E3=
=82=BA wrote:<br>
<br>
&gt; Michael,<br>
&gt;<br>
&gt; libcoin is AWESOME! Thanks!!!<br>
&gt;<br>
&gt; Can I do the following scenario with libcoin ? :<br>
&gt;<br>
&gt; 1- Create a regular Linux user called &quot;blockchain&quot;, with hom=
e dir pointed to /var/lib/libcoin/ (more or like Ubuntu/Debian mysql does);=
<br>
&gt;<br>
&gt; 2- Start &quot;bitcoind&quot; under user &quot;blockchain&quot; (the B=
itcoin blockchain) will be downloaded to /var/lib/libcoin/bitcoin/ director=
y);<br>
&gt;<br>
&gt; 3- As another regular user, called &quot;michael&quot;, I would like t=
o run &quot;bitcoind&quot; too but, I do not want to re-download the blockc=
hain to its own subdir, I want instead, to consult it (blockchain) through =
libcoin itself (not by socket of JSON)...<br>



&gt;<br>
&gt; So, the /home/michael/.bitcoin/ directory will have only wallet.dat an=
d related files, not the blockchain.<br>
&gt;<br>
&gt; This is more or less what we can do with Bitcoin Electrum alternate cl=
ient but, with Electrum, it copy the whole blockchain to mysql... This is t=
errible from my point of view, I think that there is no need to duplicate t=
he blockchain within MySQL in anyway.<br>



&gt;<br>
&gt; I just imagine a bitcoin splited in two, blockchain in one side and wa=
llet in the other side.<br>
&gt;<br>
&gt; This is possible with libcoin?!<br>
&gt;<br>
&gt; Thank you again!<br>
&gt;<br>
&gt; Best,<br>
&gt; Thiago<br>
&gt;<br>
&gt; 2012/2/28 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gronager@ceptacl=
e.com" target=3D"_blank">gronager@ceptacle.com</a>&gt;<br>
&gt; Hi again - and thanks for testing and finding this!<br>
&gt;<br>
&gt; I have fixed the bug you reported:<br>
&gt;<br>
&gt; The culprit was an implicit string constructor for the ChainAddress th=
at caused creation of a not fully initialized ChainAddress. The right way t=
o do it is using chain::getAddress(string) as the ChainAddress is chain spe=
cific.<br>



&gt;<br>
&gt; A git pull will fix it ;)<br>
&gt;<br>
&gt; Cheers,<br>
&gt;<br>
&gt; Michael<br>
&gt;<br>
&gt;<br>
&gt; On 27/02/2012, at 20:03, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=
=A0=E3=82=BA wrote:<br>
&gt;<br>
&gt;&gt; AWESOME!! Thank you!!<br>
&gt;&gt;<br>
&gt;&gt; Anyway, I found a new problem... lol<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind getinfo #okay<br>
&gt;&gt; {<br>
&gt;&gt; =C2=A0 &quot;version&quot; : 40001,<br>
&gt;&gt; =C2=A0 &quot;blocks&quot; : 168753,<br>
&gt;&gt; =C2=A0 &quot;connections&quot; : 8,<br>
&gt;&gt; =C2=A0 &quot;difficulty&quot; : 1376302.26788638,<br>
&gt;&gt; =C2=A0 &quot;testnet&quot; : false<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind getaccountaddress &quot;&quot; =C2=A0# oka=
y...<br>
&gt;&gt; 1J4vNcvEdeCuLH4yvyoC2gxFEF4zquoJ87<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind listaccounts # NOT okay...<br>
&gt;&gt; {<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind getaccountaddress &quot;teste&quot; # okay=
<br>
&gt;&gt; 1E6pGh6AAtuJdFXheZMp1zdYmvdqAQn9QT<br>
&gt;&gt;<br>
&gt;&gt; /usr/local/bin/bitcoind listaccounts # NOT okay...<br>
&gt;&gt; {<br>
&gt;&gt; =C2=A0 &quot;teste&quot; : 0.00000000<br>
&gt;&gt; }<br>
&gt;&gt;<br>
&gt;&gt; Where is my default account listed at &quot;listaccounts&quot; out=
put?!<br>
&gt;&gt;<br>
&gt;&gt; Best,<br>
&gt;&gt; Thiago<br>
&gt;&gt;<br>
&gt;&gt; 2012/2/26 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gronager@cep=
tacle.com" target=3D"_blank">gronager@ceptacle.com</a>&gt;<br>
&gt;&gt; And if you do an update now &quot;help&quot; is there too ;)<br>
&gt;&gt;<br>
&gt;&gt; /M<br>
&gt;&gt;<br>
&gt;&gt; On 25/02/2012, at 03:11, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=
=83=A0=E3=82=BA wrote:<br>
&gt;&gt;<br>
&gt;&gt;&gt; Thank you!!!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; It is all working now! Except &quot;help&quot;...<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Nice work Michael!!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Best,<br>
&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2012/2/24 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gronager=
@ceptacle.com" target=3D"_blank">gronager@ceptacle.com</a>&gt;<br>
&gt;&gt;&gt; OK - didn&#39;t took the weekend:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; support for &quot;port&quot; is on github now :)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Only took two lines:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; =C2=A0 =C2=A0 =C2=A0 =C2=A0 (&quot;port&quot;, value&lt;unsign=
ed short&gt;(&amp;port)-&gt;default_value(8333), &quot;Listen on specified =
port for the p2p protocol&quot;)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; and using the port option in the Node constructor (was there a=
lready):<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; =C2=A0 =C2=A0 Node node(chain, data_dir, args.count(&quot;noli=
sten&quot;) ? &quot;&quot; : &quot;0.0.0.0&quot;, lexical_cast&lt;string&gt=
;(port)); // it is also here we specify the use of a proxy!<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; /M<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; On 24/02/2012, at 19:49, Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=
=E3=83=A0=E3=82=BA wrote:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hi Michael,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Thank you for your attention!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Now, I&#39;m trying to start libcoin&#39;s bitcoind using =
high ports but, it always try to listen at 8332, no matter what I &quot;say=
&quot;...<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Look:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; $ cat .bitcoin/bitcoin.conf<br>
&gt;&gt;&gt;&gt; server=3D1<br>
&gt;&gt;&gt;&gt; daemon=3D1<br>
&gt;&gt;&gt;&gt; rpcuser=3Dlibcoin<br>
&gt;&gt;&gt;&gt; rpcpassword=3DLibCoin13<br>
&gt;&gt;&gt;&gt; rpcport=3D10332<br>
&gt;&gt;&gt;&gt; port=3D10333<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; But:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; /usr/local/bin/bitcoind<br>
&gt;&gt;&gt;&gt; Error: Address already in use<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; terminate called after throwing an instance of &#39;DbExce=
ption&#39;<br>
&gt;&gt;&gt;&gt; what(): =C2=A0DbEnv::close: Invalid argument<br>
&gt;&gt;&gt;&gt; Aborted<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; When I &quot;strace it&quot;, I can see:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; ...<br>
&gt;&gt;&gt;&gt; bind(12, {sa_family=3DAF_INET, sin_port=3Dhtons(8333), sin=
_addr=3Dinet_addr(&quot;0.0.0.0&quot;)}, 16) =3D -1 EADDRINUSE (Address alr=
eady in use)<br>
&gt;&gt;&gt;&gt; ...<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I already tried:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; /usr/local/bin/bitcoind --rpcport 10332<br>
&gt;&gt;&gt;&gt; /usr/local/bin/bitcoind --rpcport=3D10332<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Without success...<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Thanks again!<br>
&gt;&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; 2012/2/24 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:gron=
ager@ceptacle.com" target=3D"_blank">gronager@ceptacle.com</a>&gt;<br>
&gt;&gt;&gt;&gt; Hi Thiago,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Forgot to comment on the two latter:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; $ bitcoind getaccountaddress &quot;&quot;<br>
&gt;&gt;&gt;&gt;&gt; HTTP error code: 401<br>
&gt;&gt;&gt;&gt;&gt; Error: couldn&#39;t parse reply from server<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; $ bitcoind listaccounts<br>
&gt;&gt;&gt;&gt;&gt; HTTP error code: 401<br>
&gt;&gt;&gt;&gt;&gt; Error: couldn&#39;t parse reply from server<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; 401 =3D permission denied - you need to setup username / p=
assword either on the commandline or in the bicoin.conf file to access thos=
e commands...<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; See in the bitcoind.cpp file for commands that you can use=
 with and without auth...<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Those that contains an &quot;auth&quot; requires auth:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; =C2=A0 =C2=A0server.registerMethod(method_ptr(new GetBalan=
ce(wallet)), auth);<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; As opposed to:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; =C2=A0 =C2=A0server.registerMethod(method_ptr(new GetInfo(=
node)));<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; auth is defined by:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; =C2=A0 =C2=A0Auth auth(rpc_user, rpc_pass); // if rpc_user=
 and rpc_pass are not set, all authenticated methods becomes disallowed.<br=
>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; so you just experience the case explained in the comment ;=
) I admit that the output could be more readable, though!<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; /M<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Any tips?! lol<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Thanks!<br>
&gt;&gt;&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; 2012/2/23 Martinx - =E3=82=B8=E3=82=A7=E3=83=BC=E3=83=
=A0=E3=82=BA &lt;<a href=3D"mailto:thiagocmartinsc@gmail.com" target=3D"_bl=
ank">thiagocmartinsc@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;&gt; AWESOME!!!<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; I can compile libcoin at my Ubuntu 11.10... I just nee=
d to install:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; sudo aptitude install libboost1.46-all-dev<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; ...alongside with another already installed dependenci=
es, and now it works!!<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Thank you!<br>
&gt;&gt;&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; 2012/2/23 Michael Gr=C3=B8nager &lt;<a href=3D"mailto:=
gronager@ceptacle.com" target=3D"_blank">gronager@ceptacle.com</a>&gt;<br>
&gt;&gt;&gt;&gt;&gt; Hi Martinx,<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Another note:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; boost 1.42 and openssl 1.0 has a conflict (you will se=
e it when you try to compile coinHTTP with that specific combination: sslv2=
 has been removed from openssl, but boost still references it.)<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; You should do a :<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; sudo apt-get upgrade libboost-dev-all<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; to get the 1.46.1 library<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; /M<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; On 23/02/2012, at 18:31, Martinx - =E3=82=B8=E3=82=A7=
=E3=83=BC=E3=83=A0=E3=82=BA wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Hi Michael!<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Thank you for libcoin! It is a awesome evolution f=
or Bitcoin and for the CryptoCurrencies as a hole... Thanks!!!<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Anyway, I am unable to compile libcoin under my Ub=
untu 11.04. At this machine, I have compiled and running Bitcoin (from sour=
ces), Namecoin, Devcoin, Litecoin, IXcoin and I0coin, all from sources but,=
 when I try to compile libcoin, I got:<br>



&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ----<br>
&gt;&gt;&gt;&gt;&gt;&gt; user@desk:~/libcoin$ ./configure<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- The C compiler identification is GNU<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- The CXX compiler identification is GNU<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Check for working C compiler: /usr/bin/gcc<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Check for working C compiler: /usr/bin/gcc -- w=
orks<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Detecting C compiler ABI info<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Detecting C compiler ABI info - done<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Check for working CXX compiler: /usr/bin/c++<br=
>
&gt;&gt;&gt;&gt;&gt;&gt; -- Check for working CXX compiler: /usr/bin/c++ --=
 works<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Detecting CXX compiler ABI info<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Detecting CXX compiler ABI info - done<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for include files CMAKE_HAVE_PTHREAD_H<=
br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for include files CMAKE_HAVE_PTHREAD_H =
- found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthreads<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthreads - not fo=
und<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthread<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for pthread_create in pthread - found<b=
r>
&gt;&gt;&gt;&gt;&gt;&gt; -- Found Threads: TRUE<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for XOpenDisplay in /usr/lib/i386-linux=
-gnu/libX11.so;/usr/lib/i386-linux-gnu/libXext.so<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for XOpenDisplay in /usr/lib/i386-linux=
-gnu/libX11.so;/usr/lib/i386-linux-gnu/libXext.so - found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for gethostbyname<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for gethostbyname - found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for connect<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for connect - found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for remove<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for remove - found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for shmat<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for shmat - found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for IceConnectionNumber in ICE<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for IceConnectionNumber in ICE - found<=
br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Found X11: /usr/lib/i386-linux-gnu/libX11.so<br=
>
&gt;&gt;&gt;&gt;&gt;&gt; -- Boost version: 1.42.0<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Found the following Boost libraries:<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- =C2=A0 date_time<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- =C2=A0 regex<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- =C2=A0 filesystem<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- =C2=A0 system<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- =C2=A0 program_options<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- =C2=A0 thread<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Found OpenSSL: /usr/lib/libssl.so;/usr/lib/libc=
rypto.so<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_X11<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_X11 - found<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_WIN<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_WIN - not found.<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_QWS<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_QWS - not found.<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_MAC<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Looking for Q_WS_MAC - not found.<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Found Qt-Version 4.7.2 (using /usr/bin/qmake)<b=
r>
&gt;&gt;&gt;&gt;&gt;&gt; -- Found wxWidgets: TRUE<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; The build system is configured to install librarie=
s to /usr/local/lib<br>
&gt;&gt;&gt;&gt;&gt;&gt; Your applications may not be able to find your ins=
talled libraries unless you:<br>
&gt;&gt;&gt;&gt;&gt;&gt; set your LD_LIBRARY_PATH (user specific) or<br>
&gt;&gt;&gt;&gt;&gt;&gt; update your ld.so configuration (system wide)<br>
&gt;&gt;&gt;&gt;&gt;&gt; You have an ld.so.conf.d directory on your system,=
 so if you wish to ensure that<br>
&gt;&gt;&gt;&gt;&gt;&gt; applications find the installed libcoin libraries,=
 system wide, you could install an<br>
&gt;&gt;&gt;&gt;&gt;&gt; libcoin specific ld.so configuration with:<br>
&gt;&gt;&gt;&gt;&gt;&gt; sudo make install_ld_conf<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Configuring done<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Generating done<br>
&gt;&gt;&gt;&gt;&gt;&gt; -- Build files have been written to: /home/user/li=
bcoin<br>
&gt;&gt;&gt;&gt;&gt;&gt; ----<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Now I tried make, without success:<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ----<br>
&gt;&gt;&gt;&gt;&gt;&gt; .....<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum=
 const&amp;)]+0xf): undefined reference to `BN_init&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum=
 const&amp;)]+0x1e): undefined reference to `BN_copy&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum=
 const&amp;)]+0x38): undefined reference to `BN_set_negative&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum=
 const&amp;)]+0x4f): undefined reference to `BN_clear_free&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZngRK7CBigNum[operator-(CBigNum=
 const&amp;)]+0xd3): undefined reference to `BN_clear_free&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operat=
or&lt;&lt;(CBigNum const&amp;, unsigned int)&#39;:<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZlsRK7CBigNumj[operator&lt;&lt;=
(CBigNum const&amp;, unsigned int)]+0x16): undefined reference to `BN_init&=
#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZlsRK7CBigNumj[operator&lt;&lt;=
(CBigNum const&amp;, unsigned int)]+0x2c): undefined reference to `BN_lshif=
t&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZlsRK7CBigNumj[operator&lt;&lt;=
(CBigNum const&amp;, unsigned int)]+0xad): undefined reference to `BN_clear=
_free&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operat=
or&gt;&gt;(CBigNum const&amp;, unsigned int)&#39;:<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;=
(CBigNum const&amp;, unsigned int)]+0xf): undefined reference to `BN_init&#=
39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;=
(CBigNum const&amp;, unsigned int)]+0x1e): undefined reference to `BN_copy&=
#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;=
(CBigNum const&amp;, unsigned int)]+0x47): undefined reference to `BN_clear=
_free&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZrsRK7CBigNumj[operator&gt;&gt;=
(CBigNum const&amp;, unsigned int)]+0xcb): undefined reference to `BN_clear=
_free&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operat=
or!=3D(CBigNum const&amp;, CBigNum const&amp;)&#39;:<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZneRK7CBigNumS1_[operator!=3D(C=
BigNum const&amp;, CBigNum const&amp;)]+0x14): undefined reference to `BN_c=
mp&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `operat=
or&gt;(CBigNum const&amp;, CBigNum const&amp;)&#39;:<br>
&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._ZgtRK7CBigNumS1_[operator&gt;(C=
BigNum const&amp;, CBigNum const&amp;)]+0x14): undefined reference to `BN_c=
mp&#39;<br>
&gt;&gt;&gt;&gt;&gt;&gt; ../../lib/libcoin.a(Script.o): In function `uint25=
6 Hash&lt;__gnu_cxx::__normal_iterator&lt;unsigned char*, std::vector&lt;un=
signed char, std::allocator&lt;unsigned char&gt; &gt; &gt; &gt;(__gnu_cxx::=
__normal_iterator&lt;unsigned char*, std::vector&lt;unsigned char, std::all=
ocator&lt;unsigned char&gt; &gt; &gt;, __gnu_cxx::__normal_iterator&lt;unsi=
gned char*, std::vector&lt;unsigned char, std::allocator&lt;unsigned char&g=
t; &gt; &gt;)&#39;:<br>



&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_it=
eratorIPhSt6vectorIhSaIhEEEEE7uint256T_S8_[uint256 Hash&lt;__gnu_cxx::__nor=
mal_iterator&lt;unsigned char*, std::vector&lt;unsigned char, std::allocato=
r&lt;unsigned char&gt; &gt; &gt; &gt;(__gnu_cxx::__normal_iterator&lt;unsig=
ned char*, std::vector&lt;unsigned char, std::allocator&lt;unsigned char&gt=
; &gt; &gt;, __gnu_cxx::__normal_iterator&lt;unsigned char*, std::vector&lt=
;unsigned char, std::allocator&lt;unsigned char&gt; &gt; &gt;)]+0x6d): unde=
fined reference to `SHA256&#39;<br>



&gt;&gt;&gt;&gt;&gt;&gt; Script.cpp:(.text._Z4HashIN9__gnu_cxx17__normal_it=
eratorIPhSt6vectorIhSaIhEEEEE7uint256T_S8_[uint256 Hash&lt;__gnu_cxx::__nor=
mal_iterator&lt;unsigned char*, std::vector&lt;unsigned char, std::allocato=
r&lt;unsigned char&gt; &gt; &gt; &gt;(__gnu_cxx::__normal_iterator&lt;unsig=
ned char*, std::vector&lt;unsigned char, std::allocator&lt;unsigned char&gt=
; &gt; &gt;, __gnu_cxx::__normal_iterator&lt;unsigned char*, std::vector&lt=
;unsigned char, std::allocator&lt;unsigned char&gt; &gt; &gt;)]+0xb8): unde=
fined reference to `SHA256&#39;<br>



&gt;&gt;&gt;&gt;&gt;&gt; collect2: ld returned 1 exit status<br>
&gt;&gt;&gt;&gt;&gt;&gt; make[2]: *** [bin/bitcoind] Error 1<br>
&gt;&gt;&gt;&gt;&gt;&gt; make[1]: *** [applications/bitcoind/CMakeFiles/app=
_bitcoind.dir/all] Error 2<br>
&gt;&gt;&gt;&gt;&gt;&gt; make: *** [all] Error 2<br>
&gt;&gt;&gt;&gt;&gt;&gt; -----<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; What can I do?!<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Best,<br>
&gt;&gt;&gt;&gt;&gt;&gt; Thiago<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; On 1 February 2012 12:18, Michael Gr=C3=B8nager &l=
t;<a href=3D"mailto:gronager@ceptacle.com" target=3D"_blank">gronager@cepta=
cle.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt; Dear Bitcoiners,<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; libcoin is now in a state ready for its first rele=
ase, which I would like to share with you!<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; =3D=3D=3D libcoin is a crypto currency library bas=
ed on the bitcoin/bitcoin &quot;Satoshi&quot; client. =3D=3D=3D<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Copenhagen, Denmark - 1st February 2012 Ceptacle a=
nnounces the release of the first version of the crypto currency library &q=
uot;libcoin&quot; based on the bitcoin/bitcoin &quot;Satoshi&quot; client.<=
br>



&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; libcoin also maintains a version of bitcoind that =
is a 100% compatible drop-in replacement of the bitcoin/bitcoind client: Yo=
u can use it on the same computer on the same files and you can call it wit=
h the same scripts. And you can easily extend it without touching the basic=
 bitcoin source files.<br>



&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; The libcoin/bitcoind client downloads the entire b=
lock chain 3.5 times faster than the bitcoin/bitcoind client. This is less =
than 90 minutes on a modern laptop!<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; In libcoin, the Satoshi client code has been compl=
etely refactored, properly encapsulating classes, removing all globals, mov=
ing from threads and mutexes to a pure asynchronous approach. Functionaliti=
es have been divided into logical units and libraries, minimizing dependenc=
ies for e.g. thin clients.<br>



&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; libcoin is chain agnostic, all chain (bitcoin, tes=
tnet, namecoin, litecoin, ...) specific settings are maintained from a sing=
le class (Chain) and hence experiments with chain settings, mining, securit=
y and digital currencies for research and educational purposes are easily a=
ccessible. See the ponzicoin example for how you define your own chain.<br>



&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; The build system of libcoin is based on CMake and =
supports builds of static and dynamic libraries on Linux, Mac OS X, and Win=
dows.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; The libcoin license is LGPL v. 3. This mean that y=
ou can use it in open source as well as in commercial projects, but improve=
ments should go back into the libcoin library.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; =3D=3D=3D=3D=3D=3D<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Read more on libcoin on: <a href=3D"http://github.=
com/ceptacle/libcoin/wiki" target=3D"_blank">http://github.com/ceptacle/lib=
coin/wiki</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Join libcoin on twitter: <a href=3D"http://twitter=
.com/libcoin" target=3D"_blank">http://twitter.com/libcoin</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Download &quot;libcoin Satoshi release&quot;: <a h=
ref=3D"http://github.com/ceptacle/libcoin/zipball/v0.4.0.1" target=3D"_blan=
k">http://github.com/ceptacle/libcoin/zipball/v0.4.0.1</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Best regards,<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Michael Gronager, PhD<br>
&gt;&gt;&gt;&gt;&gt;&gt; Director, Ceptacle<br>
&gt;&gt;&gt;&gt;&gt;&gt; Jens Juels Gade 33<br>
&gt;&gt;&gt;&gt;&gt;&gt; 2100 Copenhagen E<br>
&gt;&gt;&gt;&gt;&gt;&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" =
value=3D"+4531451401" target=3D"_blank">+45 31 45 14 01</a><br>
&gt;&gt;&gt;&gt;&gt;&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com" t=
arget=3D"_blank">gronager@ceptacle.com</a><br>
&gt;&gt;&gt;&gt;&gt;&gt; Web: <a href=3D"http://www.ceptacle.com/" target=
=3D"_blank">http://www.ceptacle.com/</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; --------------------------------------------------=
----------------------------<br>
&gt;&gt;&gt;&gt;&gt;&gt; Keep Your Developer Skills Current with LearnDevNo=
w!<br>
&gt;&gt;&gt;&gt;&gt;&gt; The most comprehensive online learning library for=
 Microsoft developers<br>
&gt;&gt;&gt;&gt;&gt;&gt; is just $99.99! Visual Studio, SharePoint, SQL - p=
lus HTML5, CSS3, MVC3,<br>
&gt;&gt;&gt;&gt;&gt;&gt; Metro Style Apps, more. Free future releases when =
you subscribe now!<br>
&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"http://p.sf.net/sfu/learndevnow-d2d" ta=
rget=3D"_blank">http://p.sf.net/sfu/learndevnow-d2d</a><br>
&gt;&gt;&gt;&gt;&gt;&gt; _______________________________________________<br=
>
&gt;&gt;&gt;&gt;&gt;&gt; Bitcoin-development mailing list<br>
&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"mailto:Bitcoin-development@lists.source=
forge.net" target=3D"_blank">Bitcoin-development@lists.sourceforge.net</a><=
br>
&gt;&gt;&gt;&gt;&gt;&gt; <a href=3D"https://lists.sourceforge.net/lists/lis=
tinfo/bitcoin-development" target=3D"_blank">https://lists.sourceforge.net/=
lists/listinfo/bitcoin-development</a><br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Michael Gronager, PhD<br>
&gt;&gt;&gt;&gt;&gt; Director, Ceptacle<br>
&gt;&gt;&gt;&gt;&gt; Jens Juels Gade 33<br>
&gt;&gt;&gt;&gt;&gt; 2100 Copenhagen E<br>
&gt;&gt;&gt;&gt;&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" valu=
e=3D"+4531451401" target=3D"_blank">+45 31 45 14 01</a><br>
&gt;&gt;&gt;&gt;&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com" targe=
t=3D"_blank">gronager@ceptacle.com</a><br>
&gt;&gt;&gt;&gt;&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_b=
lank">http://www.ceptacle.com/</a><br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Michael Gronager, PhD<br>
&gt;&gt;&gt; Director, Ceptacle<br>
&gt;&gt;&gt; Jens Juels Gade 33<br>
&gt;&gt;&gt; 2100 Copenhagen E<br>
&gt;&gt;&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+45=
31451401" target=3D"_blank">+45 31 45 14 01</a><br>
&gt;&gt;&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com" target=3D"_bl=
ank">gronager@ceptacle.com</a><br>
&gt;&gt;&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">ht=
tp://www.ceptacle.com/</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Michael Gronager, PhD<br>
&gt;&gt; Director, Ceptacle<br>
&gt;&gt; Jens Juels Gade 33<br>
&gt;&gt; 2100 Copenhagen E<br>
&gt;&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+453145=
1401" target=3D"_blank">+45 31 45 14 01</a><br>
&gt;&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com" target=3D"_blank"=
>gronager@ceptacle.com</a><br>
&gt;&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">http:/=
/www.ceptacle.com/</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt; Michael Gronager, PhD<br>
&gt; Director, Ceptacle<br>
&gt; Jens Juels Gade 33<br>
&gt; 2100 Copenhagen E<br>
&gt; Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+4531451401=
" target=3D"_blank">+45 31 45 14 01</a><br>
&gt; E-mail: <a href=3D"mailto:gronager@ceptacle.com" target=3D"_blank">gro=
nager@ceptacle.com</a><br>
&gt; Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">http://www=
.ceptacle.com/</a><br>
&gt;<br>
&gt;<br>
<br>
Michael Gronager, PhD<br>
Director, Ceptacle<br>
Jens Juels Gade 33<br>
2100 Copenhagen E<br>
Mobile: <a href=3D"tel:%2B45%2031%2045%2014%2001" value=3D"+4531451401" tar=
get=3D"_blank">+45 31 45 14 01</a><br>
E-mail: <a href=3D"mailto:gronager@ceptacle.com" target=3D"_blank">gronager=
@ceptacle.com</a><br>
Web: <a href=3D"http://www.ceptacle.com/" target=3D"_blank">http://www.cept=
acle.com/</a><br>
<br>
</div></div></blockquote></div><br></div>

--bcaec501c5b0cba3aa04bbd2a7fd--