Bitcoin Forum
June 28, 2025, 09:03:38 PM *
News: Latest Bitcoin Core release: 29.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 »
  Print  
Author Topic: [ANN][XC] >> Mandatory Update to new Wallet - The first POS X11 anonymous wallet  (Read 268577 times)
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 02:55:26 AM
 #5161

i have a question guys,can some body help me?

the mined  pos coin will be only dividend among the people who has a stake?

since most people just leave their coin on exchange platform or their coin are not old enough to start stake,
does that mean you have a chance to get more pos coin at a higer rate than 3.33%?

it seems i get more pos coin than that rate today!

thanks  Smiley



You can't get more than 3.33%

thanks for the information, calculate it again, seems i make some Mistake.

thanks
atcsecure (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
May 29, 2014, 02:57:59 AM
 #5162


I'm compiling the src on Raspberry Pi, and it responds as following:

Code:
In file included from init.h:8:0,
                 from init.cpp:9:
wallet.h:20:22: fatal error: mixerann.h: No such file or directory

It seems the modified code during the last two hours has problem.

BTW, before compiling you need to "mkdir obj" in the src directory. Compiling on Raspberry Pi platform should omit "-msse2" flag.


updating github now

Good job, thanks for the update. Things seem to be flowing along much better. We do appreciate all of your hard work on this.




I have not completed github, it is still syncing


Join the revolution - XC - Decentralized Trustless Multi-Node Private Transactions
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 02:58:44 AM
 #5163

9    XC   22,658 BTC   0.00411135 BTC   5,511,194 XC   10,143 BTC   +90.14 %
Teka
Hero Member
*****
Offline Offline

Activity: 840
Merit: 1000



View Profile
May 29, 2014, 02:59:37 AM
 #5164

9    XC   22,658 BTC   0.00411135 BTC   5,511,194 XC   10,143 BTC   +90.14 %

Send me a PM when we beat Litecoin
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:00:30 AM
 #5165

1. Bitcoin (49.67 %)
Source   Pair   Volume (24h)   Price   Volume (%)
BitcoinAverage   BTC/USD   $ 13,175,169   $ 572.25   73.50 %
BitcoinAverage   BTC/CNY   $ 3,052,659   $ 569.49   17.03 %
BitcoinAverage   BTC/EUR   $ 1,162,606   $ 572.24   6.49 %
BitcoinAverage   BTC/GBP   $ 298,074   $ 589.38   1.66 %
BitcoinAverage   BTC/CAD   $ 177,498   $ 572.13   0.99 %
BitcoinAverage   BTC/RUB   $ 59,626   $ 570.58   0.33 %
Total/Avg   $ 17,925,631   $ 572.06   
2. XC (16.08 %)
Source   Pair   Volume (24h)   Price   Volume (%)
MintPal   XC/BTC   $ 4,648,323   $ 2.29   80.11 %
Cryptsy   XC/BTC   $ 1,060,025   $ 2.63   18.27 %
Bittrex   XC/BTC   $ 93,900   $ 2.40   1.62 %
Total/Avg   $ 5,802,248   $ 2.35   
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:00:46 AM
 #5166

9    XC   22,658 BTC   0.00411135 BTC   5,511,194 XC   10,143 BTC   +90.14 %

Send me a PM when we beat Litecoin

i will

haha
atcsecure (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
May 29, 2014, 03:01:12 AM
 #5167


I'm compiling the src on Raspberry Pi, and it responds as following:

Code:
In file included from init.h:8:0,
                 from init.cpp:9:
wallet.h:20:22: fatal error: mixerann.h: No such file or directory

It seems the modified code during the last two hours has problem.

BTW, before compiling you need to "mkdir obj" in the src directory. Compiling on Raspberry Pi platform should omit "-msse2" flag.


updating github now

Good job, thanks for the update. Things seem to be flowing along much better. We do appreciate all of your hard work on this.




I have not completed github, it is still syncing



Okay it is completed.. I'm pulling a copy down to my linux dev environment to make sure it compiles

Join the revolution - XC - Decentralized Trustless Multi-Node Private Transactions
dbstmddhks
Sr. Member
****
Offline Offline

Activity: 523
Merit: 250



View Profile
May 29, 2014, 03:01:34 AM
 #5168

What is this ??

Have you seen this ??

https://github.com/atcsecure/X11COIN/commit/6f0428202c17f1ea21cd1b8dab55c025a57375c7

Code:
+                    // create the payment to the mixer
 +                    uint256 hash_256;
 +                    hash_256.SetHex(nCurrentMixer);
 +                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
 +                    if (!ann.IsAnnouncement())
 +                    {
 +                        strFailReason = _("No mixing nodes are currently available.");
 +                        return false;
 +                    }
 +                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
 +                    CBitcoinAddress address;
 +                    address.Set(key);
 +
 +                    // recreate the mixers public key as PEM format
 +                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
 +                    string keyEnd = "\n-----END PUBLIC KEY-----";
 +
 +
 +                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
 +                    int len = based.size();
 +                    int linecount = len / 64;
 +                    string newbased;
 +                    for(int l = 0; l < linecount; l++)
 +                    {
 +                        newbased += based.substr(l * 64, 64);
 +                        newbased += "\n";
 +                    }
 +                    newbased += based.substr(linecount * 64, len - (linecount * 64));
 +




https://github.com/fedoracoin/fedoracoin/blob/master/src/wallet.cpp#L1235-L1262

Code:
                    // create the payment to the mixer
                    uint256 hash_256;
                    hash_256.SetHex(nCurrentMixer);
                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
                    if (!ann.IsAnnouncement())
                    {
                        strFailReason = _("No mixing nodes are currently available.");
                        return false;
                    }
                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
                    CBitcoinAddress address;
                    address.Set(key);

                    // recreate the mixers public key as PEM format
                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
                    string keyEnd = "\n-----END PUBLIC KEY-----";


                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
                    int len = based.size();
                    int linecount = len / 64;
                    string newbased;
                    for(int l = 0; l < linecount; l++)
                    {
                        newbased += based.substr(l * 64, 64);
                        newbased += "\n";
                    }
                    newbased += based.substr(linecount * 64, len - (linecount * 64));



copy of fedoracoin ??




What's this mean?
hunterwolf
Legendary
*
Offline Offline

Activity: 1108
Merit: 1002



View Profile
May 29, 2014, 03:01:40 AM
 #5169

why transaction take a long? i wait maybe more 2 hours, only 3 confirmation yet. its normal?

now 3 hour right and 4 confirmation only. Whats the problem ?

WTF. 4,5 hour and still 4 confirmation.
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:02:32 AM
 #5170

9    XC   22,658 BTC   0.00411135 BTC   5,511,194 XC   10,143 BTC   +90.14 %

Send me a PM when we beat Litecoin

i will

haha

also we have  10143BTC trade volume

and LTC has 4635BTC trade volume.
stealth923
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000


View Profile
May 29, 2014, 03:03:06 AM
 #5171

What is this ??

Have you seen this ??

https://github.com/atcsecure/X11COIN/commit/6f0428202c17f1ea21cd1b8dab55c025a57375c7

Code:
+                    // create the payment to the mixer
 +                    uint256 hash_256;
 +                    hash_256.SetHex(nCurrentMixer);
 +                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
 +                    if (!ann.IsAnnouncement())
 +                    {
 +                        strFailReason = _("No mixing nodes are currently available.");
 +                        return false;
 +                    }
 +                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
 +                    CBitcoinAddress address;
 +                    address.Set(key);
 +
 +                    // recreate the mixers public key as PEM format
 +                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
 +                    string keyEnd = "\n-----END PUBLIC KEY-----";
 +
 +
 +                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
 +                    int len = based.size();
 +                    int linecount = len / 64;
 +                    string newbased;
 +                    for(int l = 0; l < linecount; l++)
 +                    {
 +                        newbased += based.substr(l * 64, 64);
 +                        newbased += "\n";
 +                    }
 +                    newbased += based.substr(linecount * 64, len - (linecount * 64));
 +




https://github.com/fedoracoin/fedoracoin/blob/master/src/wallet.cpp#L1235-L1262

Code:
                    // create the payment to the mixer
                    uint256 hash_256;
                    hash_256.SetHex(nCurrentMixer);
                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
                    if (!ann.IsAnnouncement())
                    {
                        strFailReason = _("No mixing nodes are currently available.");
                        return false;
                    }
                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
                    CBitcoinAddress address;
                    address.Set(key);

                    // recreate the mixers public key as PEM format
                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
                    string keyEnd = "\n-----END PUBLIC KEY-----";


                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
                    int len = based.size();
                    int linecount = len / 64;
                    string newbased;
                    for(int l = 0; l < linecount; l++)
                    {
                        newbased += based.substr(l * 64, 64);
                        newbased += "\n";
                    }
                    newbased += based.substr(linecount * 64, len - (linecount * 64));



copy of fedoracoin ??




Its very obvious that this dev has no credibility.

I would get the fuck out before you all get burned
Carlture
Newbie
*
Offline Offline

Activity: 46
Merit: 0


View Profile
May 29, 2014, 03:03:18 AM
 #5172

9    XC   22,658 BTC   0.00411135 BTC   5,511,194 XC   10,143 BTC   +90.14 %

Send me a PM when we beat Litecoin
lol, does this coin will beat LTC?
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:03:39 AM
 #5173


I'm compiling the src on Raspberry Pi, and it responds as following:

Code:
In file included from init.h:8:0,
                 from init.cpp:9:
wallet.h:20:22: fatal error: mixerann.h: No such file or directory

It seems the modified code during the last two hours has problem.

BTW, before compiling you need to "mkdir obj" in the src directory. Compiling on Raspberry Pi platform should omit "-msse2" flag.


updating github now

Good job, thanks for the update. Things seem to be flowing along much better. We do appreciate all of your hard work on this.




I have not completed github, it is still syncing



Okay it is completed.. I'm pulling a copy down to my linux dev environment to make sure it compiles

thanks for the quick update, surely we have a talent and respectable dev. Smiley
laredo7mm
Hero Member
*****
Offline Offline

Activity: 1498
Merit: 537



View Profile
May 29, 2014, 03:04:04 AM
 #5174

why transaction take a long? i wait maybe more 2 hours, only 3 confirmation yet. its normal?

now 3 hour right and 4 confirmation only. Whats the problem ?

WTF. 4,5 hour and still 4 confirmation.

What block is your wallet on?  There was a wallet update in the last half hour or so.
slapper
Legendary
*
Offline Offline

Activity: 2240
Merit: 1145



View Profile WWW
May 29, 2014, 03:04:28 AM
 #5175

What is this ??

Have you seen this ??

https://github.com/atcsecure/X11COIN/commit/6f0428202c17f1ea21cd1b8dab55c025a57375c7

Code:
+                    // create the payment to the mixer
 +                    uint256 hash_256;
 +                    hash_256.SetHex(nCurrentMixer);
 +                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
 +                    if (!ann.IsAnnouncement())
 +                    {
 +                        strFailReason = _("No mixing nodes are currently available.");
 +                        return false;
 +                    }
 +                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
 +                    CBitcoinAddress address;
 +                    address.Set(key);
 +
 +                    // recreate the mixers public key as PEM format
 +                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
 +                    string keyEnd = "\n-----END PUBLIC KEY-----";
 +
 +
 +                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
 +                    int len = based.size();
 +                    int linecount = len / 64;
 +                    string newbased;
 +                    for(int l = 0; l < linecount; l++)
 +                    {
 +                        newbased += based.substr(l * 64, 64);
 +                        newbased += "\n";
 +                    }
 +                    newbased += based.substr(linecount * 64, len - (linecount * 64));
 +




https://github.com/fedoracoin/fedoracoin/blob/master/src/wallet.cpp#L1235-L1262

Code:
                    // create the payment to the mixer
                    uint256 hash_256;
                    hash_256.SetHex(nCurrentMixer);
                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
                    if (!ann.IsAnnouncement())
                    {
                        strFailReason = _("No mixing nodes are currently available.");
                        return false;
                    }
                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
                    CBitcoinAddress address;
                    address.Set(key);

                    // recreate the mixers public key as PEM format
                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
                    string keyEnd = "\n-----END PUBLIC KEY-----";


                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
                    int len = based.size();
                    int linecount = len / 64;
                    string newbased;
                    for(int l = 0; l < linecount; l++)
                    {
                        newbased += based.substr(l * 64, 64);
                        newbased += "\n";
                    }
                    newbased += based.substr(linecount * 64, len - (linecount * 64));



copy of fedoracoin ??




What's this mean?

It means something is about to hit the fan and you are not going to like it.

▄███████████████████▄
████████████████████████

██████████▀▀▀▀██████████
███████████████▀▀███████
█████████▄▄███▄▄█████
████████▀▀████▀███████
█████████▄▄██▀██████████
████████████▄███████████
██████████████▄█████████
██████████▀▀███▀▀███████
███████████████████████
█████████▄▄████▄▄████████
▀███████████████████▀
.
 BC.GAME 
███████████████
███████████████
███████████████
███████████████
██████▀░▀██████
████▀░░░░░▀████
███░░░░░░░░░███
███▄░░▄░▄░░▄███
█████▀░░░▀█████

███████████████

███████████████

███████████████

███████████████
███████████████
███████████████
███████████████
███████████████
███░░▀░░░▀░░███
███░░▄▄▄░░▄████
███▄▄█▀░░▄█████
█████▀░░▐██████
█████░░░░██████

███████████████

███████████████

███████████████

███████████████
███████████████
███████████████
███████████████
███████████████
██████▀▀░▀▄░███
████▀░░▄░▄░▀███
███▀░░▀▄▀▄░▄███
███▄░░▀░▀░▄████
███░▀▄░▄▄██████

███████████████

███████████████

███████████████

███████████████

DEPOSIT BONUS
.1000%.
GET FREE
...5 BTC...

REFER & EARN
..$1000 + 15%..
COMMISSION


 Play Now 
jly77
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
May 29, 2014, 03:04:53 AM
 #5176

What is this ??

Have you seen this ??

https://github.com/atcsecure/X11COIN/commit/6f0428202c17f1ea21cd1b8dab55c025a57375c7

Code:
+                    // create the payment to the mixer
 +                    uint256 hash_256;
 +                    hash_256.SetHex(nCurrentMixer);
 +                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
 +                    if (!ann.IsAnnouncement())
 +                    {
 +                        strFailReason = _("No mixing nodes are currently available.");
 +                        return false;
 +                    }
 +                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
 +                    CBitcoinAddress address;
 +                    address.Set(key);
 +
 +                    // recreate the mixers public key as PEM format
 +                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
 +                    string keyEnd = "\n-----END PUBLIC KEY-----";
 +
 +
 +                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
 +                    int len = based.size();
 +                    int linecount = len / 64;
 +                    string newbased;
 +                    for(int l = 0; l < linecount; l++)
 +                    {
 +                        newbased += based.substr(l * 64, 64);
 +                        newbased += "\n";
 +                    }
 +                    newbased += based.substr(linecount * 64, len - (linecount * 64));
 +




https://github.com/fedoracoin/fedoracoin/blob/master/src/wallet.cpp#L1235-L1262

Code:
                    // create the payment to the mixer
                    uint256 hash_256;
                    hash_256.SetHex(nCurrentMixer);
                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
                    if (!ann.IsAnnouncement())
                    {
                        strFailReason = _("No mixing nodes are currently available.");
                        return false;
                    }
                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
                    CBitcoinAddress address;
                    address.Set(key);

                    // recreate the mixers public key as PEM format
                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
                    string keyEnd = "\n-----END PUBLIC KEY-----";


                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
                    int len = based.size();
                    int linecount = len / 64;
                    string newbased;
                    for(int l = 0; l < linecount; l++)
                    {
                        newbased += based.substr(l * 64, 64);
                        newbased += "\n";
                    }
                    newbased += based.substr(linecount * 64, len - (linecount * 64));



copy of fedoracoin ??




What's this mean?

Means somebody wants to get some cheap coins Tongue
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:05:51 AM
 #5177

24 Hour Volume Rankings
1. Bitcoin (49.05 %)
Source   Pair   Volume (24h)   Price   Volume (%)
BitcoinAverage   BTC/USD   $ 13,192,497   $ 571.15   73.45 %
BitcoinAverage   BTC/CNY   $ 3,068,270   $ 568.69   17.08 %
BitcoinAverage   BTC/EUR   $ 1,164,344   $ 571.75   6.48 %
BitcoinAverage   BTC/GBP   $ 298,115   $ 589.50   1.66 %
BitcoinAverage   BTC/CAD   $ 177,819   $ 571.64   0.99 %
BitcoinAverage   BTC/RUB   $ 59,638   $ 570.59   0.33 %
Total/Avg   $ 17,960,683   $ 571.08   
2. XC (17.42 %)
Source   Pair   Volume (24h)   Price   Volume (%)
MintPal   XC/BTC   $ 4,677,920   $ 2.19   73.34 %
Cryptsy   XC/BTC   $ 1,060,421   $ 2.63   16.63 %
Poloniex   XC/BTC   $ 546,489   $ 2.40   8.57 %
Bittrex   XC/BTC   $ 93,633   $ 2.40   1.47 %
Total/Avg   $ 6,378,463   $ 2.28   
3. Darkcoin (13.46 %)
Source   Pair   Volume (24h)   Price   Volume (%)
MintPal   DRK/BTC   $ 2,793,549   $ 6.87   56.67 %
Cryptsy   DRK/BTC   $ 1,672,986   $ 7.70   33.94 %
BTER   DRK/CNY   $ 287,635   $ 7.15   5.83 %
BTER   DRK/BTC   $ 134,456   $ 7.15   2.73 %
C-CEX   DRK/BTC   $ 16,658   $ 8.97   0.34 %
MintPal   DRK/LTC   $ 11,556   $ 7.41   0.23 %
Bittrex   DRK/BTC   $ 10,225   $ 8.27   0.21 %
Prelude   DRK/BTC   $ 2,681   $ 9.65   0.05 %
Total/Avg   $ 4,929,745   $ 7.19   
4. Litecoin (7.19 %)
Source   Pair   Volume (24h)   Price   Volume (%)
BTC-E   LTC/BTC   $ 993,034   $ 11.07   37.71 %
BTC-E   LTC/USD   $ 792,114   $ 10.80   30.08 %
BTC100   LTC/CNY   $ 239,503   $ 11.11   9.09 %
BTC China   LTC/CNY   $ 184,754   $ 11.04   7.02 %
Cryptsy   LTC/BTC   $ 114,448   $ 10.99   4.35 %
Kraken   LTC/EUR   $ 67,962   $ 11.24   2.58 %
BTER   LTC/CNY   $ 67,310   $ 11.03   2.56 %
BTC38   LTC/CNY   $ 66,307   $ 10.98   2.52 %
MintPal   LTC/BTC   $ 52,074   $ 10.79   1.98 %
BTER   LTC/BTC   $ 22,383   $ 11.07   0.85 %
BTC-E   LTC/RUR   $ 8,665   $ 11.28   0.33 %
BTC China   LTC/BTC   $ 7,518   $ 11.08   0.29 %
Kraken   LTC/BTC   $ 5,923   $ 11.14   0.22 %
NIX-E   LTC/USD   $ 2,474   $ 11.41   0.09 %
Vault of Satoshi   LTC/CAD   $ 2,197   $ 11.22   0.08 %
BTC-E   LTC/CNH   $ 1,760   $ 10.89   0.07 %
Bittrex   LTC/BTC   $ 1,720   $ 11.16   0.07 %
Vircurex   LTC/BTC   $ 1,383   $ 11.14   0.05 %
Kraken   LTC/USD   $ 698   $ 10.92   0.03 %
Bittylicious   LTC/GBP   $ 291   $ 12.13   0.01 %
AllCoin   LTC/BTC   $ 250   $ 10.39   0.01 %
BTC-E   LTC/GBP   $ 166   $ 11.16   0.01 %
Vault of Satoshi   LTC/USD   $ 145   $ 11.01   0.01 %
Coined Up   LTC/BTC   $ 117   $ 10.86   0.00 %
Comkort   LTC/BTC   $ 106   $ 11.14   0.00 %
SwissCEX   LTC/BTC   $ 34   $ 10.10   0.00 %
Atomic Trade   LTC/BTC   $ 9   $ 10.34   0.00 %
Prelude   LTC/BTC   $ 8   $ 10.91   0.00 %
Total/Avg   $ 2,633,353   $ 10.98   
chaeplin
Sr. Member
****
Offline Offline

Activity: 294
Merit: 250


View Profile
May 29, 2014, 03:06:32 AM
 #5178

What is this ??

Have you seen this ??

https://github.com/atcsecure/X11COIN/commit/6f0428202c17f1ea21cd1b8dab55c025a57375c7

Code:
+                    // create the payment to the mixer
 +                    uint256 hash_256;
 +                    hash_256.SetHex(nCurrentMixer);
 +                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
 +                    if (!ann.IsAnnouncement())
 +                    {
 +                        strFailReason = _("No mixing nodes are currently available.");
 +                        return false;
 +                    }
 +                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
 +                    CBitcoinAddress address;
 +                    address.Set(key);
 +
 +                    // recreate the mixers public key as PEM format
 +                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
 +                    string keyEnd = "\n-----END PUBLIC KEY-----";
 +
 +
 +                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
 +                    int len = based.size();
 +                    int linecount = len / 64;
 +                    string newbased;
 +                    for(int l = 0; l < linecount; l++)
 +                    {
 +                        newbased += based.substr(l * 64, 64);
 +                        newbased += "\n";
 +                    }
 +                    newbased += based.substr(linecount * 64, len - (linecount * 64));
 +




https://github.com/fedoracoin/fedoracoin/blob/master/src/wallet.cpp#L1235-L1262

Code:
                    // create the payment to the mixer
                    uint256 hash_256;
                    hash_256.SetHex(nCurrentMixer);
                    CAnnouncement ann = CAnnouncement::getAnnouncementByHash(hash_256);
                    if (!ann.IsAnnouncement())
                    {
                        strFailReason = _("No mixing nodes are currently available.");
                        return false;
                    }
                    CKeyID key(uint160(ann.pReceiveAddressPubKey));
                    CBitcoinAddress address;
                    address.Set(key);

                    // recreate the mixers public key as PEM format
                    string keyStart = "-----BEGIN PUBLIC KEY-----\n";
                    string keyEnd = "\n-----END PUBLIC KEY-----";


                    string based = EncodeBase64(reinterpret_cast<unsigned char*> (&ann.pRsaPubKey[0]), ann.pRsaPubKey.size());
                    int len = based.size();
                    int linecount = len / 64;
                    string newbased;
                    for(int l = 0; l < linecount; l++)
                    {
                        newbased += based.substr(l * 64, 64);
                        newbased += "\n";
                    }
                    newbased += based.substr(linecount * 64, len - (linecount * 64));



copy of fedoracoin ??




What's this mean?

XC mixer is copy of fedoracoin Sad


Tell me  Dev.
provenceday
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:07:07 AM
 #5179

so we will have a rest at 0.004, then take off again.
 Smiley
bughunter
Member
**
Offline Offline

Activity: 62
Merit: 10


View Profile
May 29, 2014, 03:08:03 AM
 #5180

All my deposits arrived Smiley Everything works fine! Thank you devs!
Pages: « 1 ... 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 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!