Pages:
Author

Topic: [ANN][XC] >> Mandatory Update to new Wallet - The first POS X11 anonymous wallet - page 40. (Read 268502 times)

full member
Activity: 154
Merit: 100
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 (&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 (&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
legendary
Activity: 1946
Merit: 1100
Leading Crypto Sports Betting & Casino Platform
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 (&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 (&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.
hero member
Activity: 1498
Merit: 537
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.
legendary
Activity: 1148
Merit: 1000

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
newbie
Activity: 46
Merit: 0
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?
legendary
Activity: 1036
Merit: 1000
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 (&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 (&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
legendary
Activity: 1148
Merit: 1000
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.
legendary
Activity: 1108
Merit: 1002
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.
sr. member
Activity: 523
Merit: 250
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 (&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 (&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?
hero member
Activity: 756
Merit: 500

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
legendary
Activity: 1148
Merit: 1000
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
legendary
Activity: 1148
Merit: 1000
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   
hero member
Activity: 840
Merit: 1000
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
legendary
Activity: 1148
Merit: 1000
9    XC   22,658 BTC   0.00411135 BTC   5,511,194 XC   10,143 BTC   +90.14 %
hero member
Activity: 756
Merit: 500

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

legendary
Activity: 1148
Merit: 1000
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
sr. member
Activity: 519
Merit: 253

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.

full member
Activity: 135
Merit: 100
Please update your github with the full, working source. I, and the other exchanges, are uncomfortable running the source from a somewhat sketchy .rar on a website with your updated source. The github source is missing your obj directory (we can create this ourselves, but it is an extra step), and more importantly, it is missing a "mixerann.h".

-tf2honeybadger, Poloniex Wallet Manager

I stand corrected, mkdir obj was the one problem I did have compiling.  Wink
sr. member
Activity: 294
Merit: 250
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 (&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 (&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 ??


hero member
Activity: 672
Merit: 500
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


yup
Pages:
Jump to: