Bitcoin Forum
May 04, 2024, 12:06:17 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 »
  Print  
Author Topic: [ANN][XC] >> Mandatory Update to new Wallet - The first POS X11 anonymous wallet  (Read 268359 times)
atcsecure (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


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


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
1714781177
Hero Member
*
Offline Offline

Posts: 1714781177

View Profile Personal Message (Offline)

Ignore
1714781177
Reply with quote  #2

1714781177
Report to moderator
BitcoinCleanup.com: Learn why Bitcoin isn't bad for the environment
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
dbstmddhks
Sr. Member
****
Offline Offline

Activity: 523
Merit: 250



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

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
 #5183

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
 #5184

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
 #5185

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
 #5186

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
 #5187


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
 #5188

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: 1918
Merit: 1096


Leading Crypto Sports Betting & Casino Platform


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

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.

..Stake.com..   ▄████████████████████████████████████▄
   ██ ▄▄▄▄▄▄▄▄▄▄            ▄▄▄▄▄▄▄▄▄▄ ██  ▄████▄
   ██ ▀▀▀▀▀▀▀▀▀▀ ██████████ ▀▀▀▀▀▀▀▀▀▀ ██  ██████
   ██ ██████████ ██      ██ ██████████ ██   ▀██▀
   ██ ██      ██ ██████  ██ ██      ██ ██    ██
   ██ ██████  ██ █████  ███ ██████  ██ ████▄ ██
   ██ █████  ███ ████  ████ █████  ███ ████████
   ██ ████  ████ ██████████ ████  ████ ████▀
   ██ ██████████ ▄▄▄▄▄▄▄▄▄▄ ██████████ ██
   ██            ▀▀▀▀▀▀▀▀▀▀            ██ 
   ▀█████████▀ ▄████████████▄ ▀█████████▀
  ▄▄▄▄▄▄▄▄▄▄▄▄███  ██  ██  ███▄▄▄▄▄▄▄▄▄▄▄▄
 ██████████████████████████████████████████
▄▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▄
█  ▄▀▄             █▀▀█▀▄▄
█  █▀█             █  ▐  ▐▌
█       ▄██▄       █  ▌  █
█     ▄██████▄     █  ▌ ▐▌
█    ██████████    █ ▐  █
█   ▐██████████▌   █ ▐ ▐▌
█    ▀▀██████▀▀    █ ▌ █
█     ▄▄▄██▄▄▄     █ ▌▐▌
█                  █▐ █
█                  █▐▐▌
█                  █▐█
▀▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▀█
▄▄█████████▄▄
▄██▀▀▀▀█████▀▀▀▀██▄
▄█▀       ▐█▌       ▀█▄
██         ▐█▌         ██
████▄     ▄█████▄     ▄████
████████▄███████████▄████████
███▀    █████████████    ▀███
██       ███████████       ██
▀█▄       █████████       ▄█▀
▀█▄    ▄██▀▀▀▀▀▀▀██▄  ▄▄▄█▀
▀███████         ███████▀
▀█████▄       ▄█████▀
▀▀▀███▄▄▄███▀▀▀
..PLAY NOW..
jly77
Full Member
***
Offline Offline

Activity: 154
Merit: 100


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

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
 #5191

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
 #5192

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
 #5193

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
 #5194

All my deposits arrived Smiley Everything works fine! Thank you devs!
dbstmddhks
Sr. Member
****
Offline Offline

Activity: 523
Merit: 250



View Profile
May 29, 2014, 03:08:51 AM
 #5195

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

mixner used to the anno transaction?
hunterwolf
Legendary
*
Offline Offline

Activity: 1108
Merit: 1002



View Profile
May 29, 2014, 03:09:35 AM
 #5196

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.

no not my wallet from cryptsy
atcsecure (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
May 29, 2014, 03:10:17 AM
 #5197

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.


No its not

relax - the fedora code that is public doesn't actually work.  The anon code and the network code was written from the ground up.  

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

Activity: 1148
Merit: 1000



View Profile
May 29, 2014, 03:10:32 AM
 #5198

21554   2014-05-29 03:08:23   3   2953.709177   0.0   5511194.372932   2.93579   21.2644   74.7873%
21553   2014-05-29 03:08:43   4   513.560204   0.0   5511194.282713   2.93722   21.2646   74.7756%
21552   2014-05-29 03:07:22   2   66.19542   0.0   5511194.37288   2.93637   21.2637   74.7809%
21551   2014-05-29 03:03:30   2   134.138475   0.0   5511194.319236   2.93378   21.261   74.7972%
21550   2014-05-29 03:03:04   5   25132.09625   0.0   5511194.210761   2.9337   21.2607   74.7973%
21549   2014-05-29 03:02:07   3   58640.447952   0.0   5511194.077348   2.96581   21.26   74.5201%

Block move fast now.
laredo7mm
Hero Member
*****
Offline Offline

Activity: 1498
Merit: 537



View Profile
May 29, 2014, 03:11:12 AM
 #5199

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.

no not my wallet from cryptsy

Like someone said before...it is probably a cryptsy issue not an XC wallet issue.
atcsecure (OP)
Hero Member
*****
Offline Offline

Activity: 756
Merit: 500


View Profile WWW
May 29, 2014, 03:11:20 AM
 #5200

21554   2014-05-29 03:08:23   3   2953.709177   0.0   5511194.372932   2.93579   21.2644   74.7873%
21553   2014-05-29 03:08:43   4   513.560204   0.0   5511194.282713   2.93722   21.2646   74.7756%
21552   2014-05-29 03:07:22   2   66.19542   0.0   5511194.37288   2.93637   21.2637   74.7809%
21551   2014-05-29 03:03:30   2   134.138475   0.0   5511194.319236   2.93378   21.261   74.7972%
21550   2014-05-29 03:03:04   5   25132.09625   0.0   5511194.210761   2.9337   21.2607   74.7973%
21549   2014-05-29 03:02:07   3   58640.447952   0.0   5511194.077348   2.96581   21.26   74.5201%

Block move fast now.

Yes block issue has been fixed

Join the revolution - XC - Decentralized Trustless Multi-Node Private Transactions
Pages: « 1 ... 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 »
  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!