Bitcoin Forum
June 24, 2024, 02:21:44 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: August 29, 2014, 07:54:41 PM
hey the dudes still afloat chillin out having a nice snack in the middle of a lake! looks like a good day to me!

lol - what about the boats feelings?  Cry

personally i think its just thanking god he still has pants on

looks like sexcoin blew up and he's on a boat!
2  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: July 09, 2014, 11:16:50 PM
thanks for the info subSTRATA, those tips are good to know.

yeah the .9 client starts up way way faster than the .6 ones. Takes several minutes of splash screen saying "loading block index..." on .6.
3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: July 09, 2014, 02:19:48 PM
Hi - I've been unable to download the block chain since mid May - am on 646 even tried to del the block chain and start again without success...

Congrats on one year since this thread was started too BTW.

Regards,

not sure what the problem is here.

can you look in the debug.log file ( in %APP_DATA%\Sexcoin ) and see what it's saying recently (at the bottom)?
you can also see this file by going to Help/DebugWindow/InformationTab/ and clicking the Debug Logfile "Open" button.

also you might check and see if you have a sexcoin.conf file in the same Sexcoin directory and if so, what is in  it.



4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: July 09, 2014, 02:13:38 PM
I have the same issue and the wallet seems like it is stuck at the same block (block 694294). I just left the wallet open for a while and get an error message in the wallet itself: EXCEPTION: 11DvException Db::get: Not enough space C:\Users\Path_to_sexcoin-qt.exe in Process . I have enough space on my hard drive not sure what's going on.  Huh

quite a few people saw that error at one of the forks. the solution was to delete all the block chain data... don't delete wallet.dat of course Smiley and re-download.

The out of space seems to refer to DB entry space or something for orphan blocks or something, I'm not really sure but none of the reporters were ever out of disk space.
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: June 27, 2014, 08:18:43 PM
yeah i will say that issues like you just described with maxconn inbound etc will work exactly like bitcoin with v.9.x i have working now. I know because the code .9 started as a github fork of bitcoin and I haven't changed anything to do with the connection scheme or logic.

I think it's safe to say that the behavior you described was added after bitcoin .5 or .6, wherever sexcoin was forked from. Sexcoin was never updated with really any features from bitcoin after the fork.... as far as I can tell.

That is one major goal with sexcoin-ng, it is a true "github fork" that you can easily compare and create pull requests via web interface.
We can rebase/merge and keep in sync with bitcoin or at least only slightly behind it.

I'm waiting to rebase what I have now in https://github.com/sxcer/sexcoin-ng until i finish a sexcoin-ng-qt branch(where i'm modding the qt client) and get it merged into master.




6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: June 26, 2014, 07:51:03 PM
Its safe to delete your peers.dat.
Shut down your client, delete peers.dat, restart and let it rebuild.
That should take care of almost ALL of the old garbage.
You may be surprised how much better it runs.
it takes care of it and gives you a glimpse of how things could be.... until it fills back up with other coins peers that it learns from a node it connects to.

if we could get every node to delete peers.dat at the same instant, it would last longer, or forever.

This is where we may be able to improve the situation if we deprecate old versions.. and maybe in conjunction don't load addresses from some "less old" versions.

I'm running .9 with only the single new magic num in it, peers.dat fills up same as always.

The problem as I understand it is that peer addresses are exchanged pretty much at the begining of any new connection. If you delete peers.dat, you have now made all subsequent connections "new" since there is no history of last contact with any address. so your client seeds from IRC or dnsseed addnode= etc and rx's a peer list from each new connection. So unless each of those connections has deleted his peers.dat and started fresh, one or all of them has 50K peers with most bogus.... and you will accept them from him as you always have.

7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: June 23, 2014, 05:07:24 PM
When the clients exchange peers, the problem I found with sexcoin-seeder is that there was 50K or more litecoin or non-sexcoin nodes and less than 100 sexcoin nodes..... so as the local client chose a peer from db to retry every minute or two, odds are it would chose a non-sxc node.... which used the same magic, allowing an initial connection to succeed which caused the list of bad peers to be exchanged again, since one of the first things on connect was to exchange peers. (in fact like the only thing sexcoin-seeder did)

Why bother with retrying the same connection when there are thousands other IPs available? For example, most Torrent P2P clients try just once and drop IP after 15
seconds or so of no reply. They will not attempt connection to already "pinged" IP again unless IP pool is used up and at that point they'll start all over again, randomly.

Perfect scenario would be to intentionaly drop some percentage of connections at random intervals, it would help against traffic analysis and strengthen the network.
Having all nodes "permanently" connected to other nodes makes it easy to monitor the traffic and create a list of transaction senders, all it takes is nodes at few key
locations within network. But if all user nodes drop some percentage of connections after every transaction sent or relayed then it is much harder to analyse traffic.

Or just give us a way to manualy "kill" connections, right now there is no such feature within SXC or other crypto wallets (addnode IP remove is not working properly).

I don't fully understand the logic or algorithm for selecting nodes to connect to, so I can't say much for sure.
Except, the nodes do try other ips randomly, and keep track of recently tried ones. As I understand it, once they have not been seen in some minimum interval, they are in the pool of "can be chosen to reconnect to".

the biggest problem we have and had was that the pool contains tens of thousands of nodes that DO reply with valid messages and message responses. At least up to a point. That was the purpose of blockheight limits, proto version limits, etc that were coded in, to try and reject nodes that were replying, but were not sexcoin nodes.

I dont disagree with your logic, but what we have a is a situation where the peer logic as coded is straight from bitcoin, we did not create the process by which nodes are retried, archived, graded etc. and I'm not inclined to alter that logic that works for bitcoin considering we haven't finished migrating to a single sxc-only magic.

It seems that with the new dedicated sxc-only magic we have greatly improved the situation and now what remains may very well be due to sxc client specific issue(s)... namely that peers.dat is 99% full of non-sxc nodes and keeps getting propagated from node to node on every connect, plus current clients accepting both magics which means they can still connect to non-sxc nodes enough to exchange peers with them

I, or we, need to read through the magic handing code and almost for sure create a client that does NOT accept old magic and infact has no knowledge of old magic etc. This may require either a conversion process for any preexisinting blockfiles on the client or a redownoad of the blockchain.


Anyway, the goal is to elminate all your concerns, which are shared by the devs, but we just havne't gotten it done.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: June 22, 2014, 08:56:55 PM
I have observed a strange behaviour of newest SXC client v0.6.4.6 and also older versions. I'm using blacklist to ban nodes which are not on v0.6.4.6 and by
looking at log-file there it becomes obvious SXC client just don't want to give up attempting to connect to some nodes. It makes no sense to keep on trying
when peers.dat file is almost 900 kB big, there must be a ton of IP addresses inside yet SXC client stubornly sticks to a dozen or so. In effect, my SXC node is
connected to less than 8 other nodes even after being online for few hours. Any other cryptocoin client (have 15 of them) connects to 8 other nodes in few
minutes, especially clients with 500 kB or bigger peers.dat file.
----snip-----
Also, Coin Control would be a nice addition to client.

like Nerull said, .9 will fix the coincontrol issue and the peers.dat reconnect issue should be improved.

The peers issue is actually alot more complicated due to using the same magic as litecoin. Our magic changed at block 680K. 6.4.6  (and back at least as far as 6.4.4) work with either magic basically.

Before the .9 release we are going to look into deprecating the old magic. We are 100% sure it can be done, we just haven't worked the exact process by which to deprecate it. The blockfiles contain the old magic written between blocks..... except if we redownload the blockchain.. it may be written with the new magic? I'm not sure and need to look into it.

.9 uses leveldb for block database and a new directory structure for blockfiles on disk, so it's a perfect chance to let .9 be "new magic" only and ensure blockfiles are written with only the new magic.

I think it's going to be pretty easy now that all clients on the network are using the new magic.... but we just need to step through the process and get the new client out. The key is that .9 will want to rewrite the blockfiles and blockdb, so we want to make sure we take advantage of that to deprecate the old magic entirely or at least as much as we can in .9 first release.

Of course coincontrol is in bitcoin .9.x so it will just "be there" for us.


I have noticed with the new magic enabled in the sexcoin-seeder app, that i had no need for filtering peers by port# (9560) to get rid of other coins... like I did when I first ported sexcoin-seeder (and it used the old magic). In that case the peers list included all ips that responded. They were tracked as "bad" and ultimately retried, eventually. I found that to truly ignore them I had to drop them from the peers db if their listening port didn't match 9560.

But, like i said, now that the magic changed I was able to update the magic in sexcoin-seeder and remove the code which filtered on listening port.
 
What we dont' fully understand is how long, or if ever, the non sxc peers will take to drop out of peers.dat. Clients which connect, exchange their known peers so the list sortof keeps propagating around containing non-sxc nodes.

In theory I think they will eventually be dropped out, but i am not familiar enough with the peers.dat logic in *coin.

When the clients exchange peers, the problem I found with sexcoin-seeder is that there was 50K or more litecoin or non-sexcoin nodes and less than 100 sexcoin nodes..... so as the local client chose a peer from db to retry every minute or two, odds are it would chose a non-sxc node.... which used the same magic, allowing an initial connection to succeed which caused the list of bad peers to be exchanged again, since one of the first things on connect was to exchange peers. (in fact like the only thing sexcoin-seeder did)

Another thing to point out about what we can do on the client end, is to update the version strings or values and reject older versions.. since 6.4.4 we've had at least 2 hardforks i think and no updates to the protocol version field or rejection logic. It may be that we introduce something there to help filter out these old nodes that are not on the current fork, but yet they have "new magic" code which allows them to look like they are current... sortof , until blockheight or blocks are exchanged.. which ithink may be or may sometimes be after peers are exchanged.


Overall, we want to incorporate all the above fix(es) and deprecation logic possible into the next release since at least every release I was involved in was a rush job that was needed ASAP with no time to really think about anything... even updating the dns seeding addresses or hardcoded nodes etc.

.9 and .6.4.7 (maybe we'll call it .6.5) are hopefully going to take advantage of all improvements and deprecate all old stuff that we can.
9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: June 06, 2014, 06:45:34 AM
to fixup Abe with an existing mysql db of blocks up to 680K
edit Abe/Datastore.py to change the magic num

then in mysql:

Code:
mysql> update magic set magic=0xface6969 where magic_id='1';
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1  Changed: 0  Warnings: 0


mysql> select magic_id,hex(magic),magic_name from magic;
+----------+------------+----------------+
| magic_id | hex(magic) | magic_name     |
+----------+------------+----------------+
|        1 | FACE6969   | Sexcoin magic  |
|        2 | F9BEB4D9   | Bitcoin magic  |
|        3 | FABFB5DA   | Testnet magic  |
|        4 | F9BEB4FE   | Namecoin magic |
+----------+------------+----------------+
4 rows in set (0.00 sec)

10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 31, 2014, 10:58:25 PM
bitcoin .9 porting status... sexcoind on linux syncs
http://www.sexcoinforum.org/index.php?topic=557.msg3091#msg3091
11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 29, 2014, 12:44:23 AM
the dev team is active and working on various things with the coin currently. Most coins have taken massive hits in price for the last few months. Just look at bitcoin going from 1k to 450 and ltc going from 30-40 to 10.

That being said if your dumping ill be buying Smiley

Working on what:?
Last Active:    May 05, 2014, 08:37:59 PM

So btc went down 1/2 in price , how much did sexcoin lost against btc?
From the peak it lost 5x times it btc value , that's more than 10x times in usd .

If you know about various things make them public now or it will be too late.


Quote
the dev team is active and working on various things

One week passed , the dev is so busy working on  stuff that nothing , not even a tiny announcement happened.
A new Facebook page? Common , that is laughable.

soz that in 1 week nothing except for new fb page and a new competition to promote the fact that there are escorts out there accepting the coin. Rome wasnt build in a day and all that

bitcoin .9 port had fully synced the blockchain after implementing a new CForkParams class which took a weeks worth of discussion here:
http://www.sexcoinforum.org/index.php?topic=557.45

ending about when your weekly timeframe started. What took devs attention then was some weird mining/block time patterns seen on the blockchain.
That was discussed for a few days here:
http://www.sexcoinforum.org/index.php?topic=597.0

There's plenty of graphs and rambling posts by myself at least there.... harldy "nothing" for a week.
In then end  I have written up our question about the KGW and attempted to get them to user Dr.KimotoChan at the megacoin forums.

After that I started working on buildbot setup here: http://buildbot.sxcexplorer.com/  with status in #sxcdev on freenode.

I'm working on buildslaves on windows and osx now.... and i still need to script up the build process itself so i'm not almost done or anything.

plus we're all still waiting for block 680K where our magic number switches and we can focus on pushing out our .9 port with a single magic number and proceed towards only having the one single magic number in our code eventually.

digdug is actively looking into an android wallet port... he is not posting anywhere about it, but it's still happening.

your comments remind me of user "stick" on the sexcoinforum.org minus the fact that he had a laundry list of dream features that he said he could implement in a month or some super fast time line that made him look 100x as powerful as all the sexcoin devs put together.
12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 22, 2014, 12:17:09 PM
Its no wonder you guys have been delisted.

You have been around for a long time and have zero penetration into the market that this coin designed for.

WTH?

So you're saying Sexcoin has nowhere to go but up!?! thanks!

But you're right there is no real penetration yet, just the tip.

Yes,

The problem is that you are showing no plans on doing so.

What is your game plan?



it's pretty informal plans spread out over http://sexcoinforum.org
There's more plans than implementers, but we do have some dedicated people working on projects.

I'd say the big picture plan is for more people to join in with their own project or task and work on it.

Everybody recognizes issues like website needing a update/refresh, facebook stale, client at 0.6 needs update to .9, need more mining pools/miners, blah blah.... there' just not enough people to do it all.




13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 21, 2014, 02:55:26 PM
Its no wonder you guys have been delisted.

You have been around for a long time and have zero penetration into the market that this coin designed for.

WTH?

So you're saying Sexcoin has nowhere to go but up!?! thanks!

But you're right there is no real penetration yet, just the tip.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 21, 2014, 01:31:56 PM
i'm not dying... well maybe a little bit inside when i figured this out
http://www.sexcoinforum.org/index.php?topic=597.msg3013#msg3013

but i'm sure we'll fix it and keep on trucking
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New upgrade: OpenSSL Heartbleed Bugfix on: May 21, 2014, 06:57:18 AM
Someone is dumping a lot of sexcoins right now, and I'm buying  Shocked
Ok, we've patched the KGW TimeWarp Attack bug and it's been a week and a half or so..... and I still see the same thing happening as described above.

I'm assuming we are not being hit with some non-public KGW attack, and that we are looking at "normal" results of mining power being switched on and off (as the OP stated, "difficulty adjusts waaaaaaaaaaaay too fucking slowly").

I say "normal" because it seems to me that we are not really exceeding the blocks per day as designed ( 1440 blocks per day). Here is a one liner that shows 1440 blocks(target blocks per day) per sample (row) being pretty close to every 24 hours:
Code:
sxcer@dev:~$ DAYS=21 ; curl  -s http://sxcexplorer.com/chain/Sexcoin/q/nethash/1440/-$((DAYS*1440)) | sed -e '1,/START DATA/d' | awk -F, '{ printf "%8d " , $1  ; system("date -d @"$2)}'
  631906 Thu May  1 00:25:31 EDT 2014
  633346 Fri May  2 01:10:28 EDT 2014
  634786 Sat May  3 01:32:53 EDT 2014
  636226 Sun May  4 01:23:27 EDT 2014
  637666 Mon May  5 01:29:34 EDT 2014
  639106 Tue May  6 02:05:33 EDT 2014
  640546 Wed May  7 01:25:28 EDT 2014
  641986 Thu May  8 01:49:18 EDT 2014
  643426 Fri May  9 01:36:52 EDT 2014
  644866 Sat May 10 02:08:16 EDT 2014
  646306 Sun May 11 02:12:47 EDT 2014
  647746 Mon May 12 02:19:38 EDT 2014
  649186 Tue May 13 01:25:35 EDT 2014
  650626 Tue May 13 23:18:49 EDT 2014
  652066 Thu May 15 01:34:49 EDT 2014
  653506 Fri May 16 02:03:18 EDT 2014
  654946 Sat May 17 03:20:43 EDT 2014
  656386 Sun May 18 01:32:07 EDT 2014
  657826 Mon May 19 01:18:56 EDT 2014
  659266 Tue May 20 01:22:10 EDT 2014
  660706 Wed May 21 01:27:50 EDT 2014
sxcer@dev:~$

Here's a direct url to the raw data used above, showing 21 days of raw data represented above with all data fields and API notes etc: http://sxcexplorer.com/chain/Sexcoin/q/nethash/1440/-30240

You can analyze the data any which way but I think you will see that the blockchain is not producing more coins per day or even per 4 hours than designed.


What seems to be actually happening is the target block rate of 1 block per minute is greatly exceeded(say 10 blocks per minute) for a minute or two, then greatly reduced for a longer period. Eventually the cycle repeats, 10blocks/min for a minute or so, then 2-5 minutes per block for a while.


Looking at the KGW algo, there is a effectively a "lag" in the adjustment. The lag is a product of the averaging window for calculating block rate. As an example consider driving a 60 mile trip with a checkpoint at each mile marker and a goal of driving 60 miles per hour. I could pass a mile marker every 60 seconds... but:

You could travel 120 Miles per hour for 29 minutes, then sit at mile marker 58, until 58 minutes elapsed, then proceed at 60 miles per hour to finish exactly on time.... passing mile marker 60 at 60 minutes elapse.

How fast did you go?
You went and average of 60 miles per hour for 1 hour. You also went an average of 120 for 30 minutes and and average of 60 for 2 minutes. I think you see the point.

While Sexcoin difficulty now adjusts per-block using the KGW algo, the adjustment is not based on the previous block alone. In the KGW forumla the number of blocks the adjustment is based on can vary..... call it PastBlocksMin and PastBlocksMax.

The reported issue comes down to PastBlocksMin.

Sexcoin long ago copied KGW code direct from Megacoin. The only change was to the TargetSpacing... setting it to 60 seconds. There are other values that might work better for us if they were changed also.

I'm not sure that proportionally changing them will actually squash the current mining "issue". I haven't analyzed it enough to say... yet. I started down this path long ago with a KGW simulation i worked on at http://insightmaker.com/insight/13295 but I never finished it.

Anyway, here's sexcoin's current values which are just duplicates of megacoin, except the targetspacing, which is actually what causes the minimum blocks value to more than double.

Code:
static const int64   BlocksTargetSpacing = 1 * 60; // Sexcoin 60 seconds
unsigned                 intTimeDaySeconds = 60 * 60 * 24; // 86400 Seconds
int64                          PastSecondsMin = TimeDaySeconds * 0.25; // 21600
int64                          PastSecondsMax = TimeDaySeconds * 7; // 604800
uint64                            PastBlocksMin = PastSecondsMin / BlocksTargetSpacing; // 360 Sexcoin Blocks
uint64                           PastBlocksMax = PastSecondsMax / BlocksTargetSpacing; // 10080 Sexcoin Blocks

You can calcluate the above values for a 2.5 Minute target spacing coin as
   BlocksTargetSpacing = 150 Seconds # 2.5 Minutes for Megacoin
   PastBlocksMin =  144 Blocks     # from 21600/150
   PastBlocksMax = 4032 Blocks   # from 604800/150


As you can see, Megacoin has a minimum blockrate averaging window of 144 blocks, whereas sexcoin's is 360 blocks... this is due to only altering the targetspacing, while leaving PastSecondsMin the same as Megacoin.

Basically PastSecondsMin is the determining factor of the "minimum averaging window in time" .... while BlocksTargetSpacing dictates how many blocks are in that window.

What should Min and Max be?... I'm not sure. That was what I wanted to simulate with the insightmaker simulation but never finished. I was going to simulate various hashrate pools jumping on and off and see how things worked.

To start with I'd say.... 60/150 is the ratio of blockspacing times, so call that .4 and adjust the Min and Max window times by the same
   PastSecondsMin= 86400 * .25 * .4 = 8640     = 144
   PastSecondsMin= 86400 * 7 * .4   = 423360   = 4032 Blocks

Hey, that works out to the same block counts as Megacoin Smiley

Further, if you look at the Kimoto Formula:
   EventHorizonDeviation   = 1 + (0.7084 * pow((double(PastBlocksMass)/double(144)), -1.228));

You see that 144 figures prominently as the denominator..... I'm up way to late to graph that out now but I'm very interested in the effect that has on things when the other factors are 360 and 10080.

Essentially the KGW looping process of averaging over previous blocks one at a time will quit once the average exceeds the EventHorizonDeviation calculated each loop (for each additional block averaged over, PastBlocksMass).

So you can see the base of that pow() shoudl be 1 when the looping average has hit 144 blocks.... which is the minimum # of blocks to aveage over... but in our current case with fubar values the base will be 360/144.
that should produce a higher adjustment rate? but then again it's averaged over 360 blocks

So should PastBlocksMin stay at 360 or move to 144 ?
I'd say pastminblocks should be lower (144) since we are a fast blocktime coin we should not have the same 6 hour window of averaging that a 2.5 minute coin (megacoin) does.

</rant>




Code links for the stuff discussed above:
Megacoins PastSeconds{Min,Max}
https://github.com/megacoin/megacoin/blob/master/src/main.cpp#L1340

Sexcoins PastSeconds{Min,Max} copied verbatim from Megacoin source code
https://github.com/sxcer/sexcoin/blob/master/src/main.cpp#L1110

Megacoins Kimoto Equation with 144 in denominator based on their TargetBlockSpacing and desired PastSecondsMin and/or PastBlocksMin
https://github.com/megacoin/megacoin/blob/master/src/main.cpp#L1309

Sexcoins Kimoto Equation copied verbatim with 144 as denominator based on block time of Megacoin
https://github.com/sxcer/sexcoin/blob/master/src/main.cpp#L981







16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 20, 2014, 02:20:55 PM
Why do you have a Royalcoin copyright in your Source Code?

Were you the original Royalcoin Dev's or did you just forget to remove the Royalcoin.org copyright from your Source Code and just cloned it?

It was there since I started doing any dev work on sexcoin. I found a tarball of royalcoin a while back and it was the closest match to our source I've seen.

way back in the begining of this thread, "chinsu" is the original developer who created the coin. He's long gone according to local legend.

here's some details on the source code i found for royalcoin http://www.sexcoinforum.org/index.php?topic=567.0

the new bitcoin .9 port is direct from bitcoin, with none of the .6 sexcoin code

edit: well, obviously scrypt.c etc.stuff is in .6 sexcoin and the new .9 sexcoin but those were never sexcoin or royal coin copyright anyway. Plus we now have the SSE2 optimized stuff included etc.


17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 19, 2014, 07:03:59 AM
Hello, new facebook page for Sexcoin here: https://www.facebook.com/sexcoin.official  Grin

I understand the old facebook page can no longer be updated. Please like and share this new page instead!

the coin is still alive??? wow, ok, I hope the coin can develop well

Development is far from dead, even with limited amount of developers we have

We just got a port of Bitcoin v.9 code to fully sync to the blockchain on the sexcoin network last night. We still have some work to do before it's released, but we're doing it.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 13, 2014, 04:36:40 PM
Hello, new facebook page for Sexcoin here: https://www.facebook.com/sexcoin.official  Grin

I understand the old facebook page can no longer be updated. Please like and share this new page instead!

thanks dragonseer!!
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 12, 2014, 10:53:34 AM
without understanding exactly why people are seeing the no space or dbfull error, I'd just say that the planned hardfork that happened friday was done with very little lead time, especially compared to previous forks. So there are quite a few old clients around and at least 1 or two miners it seems.

Because of that , there are two Sexcoin blockchains being produced.... call them the 6.4.6 chain and the 6.4.4-5 chain. Cryptsy and most pools have upgraded and are running on chain 6.4.6, along with most dedicated nodes we know of.

In theory if you simply startup the new 6.4.6 client it will mark the blocks belonging to the 6.4.4 chain as Orphans and move on with the 6.4.6 chain. In reality it seems that this is not happening. It could be that there is too much of the 6.4.4 chain synced onto the client and it simply won't mark that many blocks, going back that far, as Orphans. I'd have to read into the code to find out.

What seems to be the "fix" is to delete the downloaded blockchain and redownload.

Digdug on sexcoinforum.org has been looking at this issue and built a new bootstrap package. This won't prevent you from having to download a large amount of data, but it will speed things up since it's all in one file and zipped up.
You can get it here:
   http://datajumper.com/


Sorry for the current mess, but this hardfork was necessary to stop the KGW Timewarp attack that was reported on this thread a page or 2 back.





20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Official Sexcoin Thread - New MANDATORY upgrade: KGW Timewarp attack FIX on: May 09, 2014, 04:49:24 PM
The idea is that we will basically force the users to update, since their client will be broken the next time they pay attention to it.

It is surprising to me no one yet implemented some automatic alert system into cryptocoin wallets. If wallet connects to multiple nodes that report
the same higher wallet version, longer blockchain and send some invalid data then warn user to check coin website or forum thread for updated wallet.
There can be more criterias that need to be fulfilled for warning to popup (to prevent abuse) but it can be done and would help solve issues big time.

Also, Bitcoin has instant messaging system where Gavin Andresen can send messages to all nodes on network, will SXC ever get something like that?

that's the alert system, the private/public keys were just changed in client 6.4.5, and we havne't had a chance to setup the code to send messages (that's not part of the clients, or public in general)

so, yes, that ability is in the client and ready to be tested Smiley



that's the alert system, the private/public keys were just changed in client 6.4.5, and we havne't had a chance to setup the code to send messages (that's not part of the clients, or public in general)

so, yes, that ability is in the client and ready to be tested Smiley
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!