Bitcoin Forum
April 26, 2024, 11:10:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 [All]
  Print  
Author Topic: [ANNOUNCE] New Solidcoin Client Fully Open-Source!  (Read 23746 times)
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 05:30:31 PM
Last edit: September 04, 2011, 06:13:40 PM by jackjack
 #1

This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin


diff solidcoin1.03 soldcoin1.04:
Code:
$ diff solidcoin-source-103/src soldcoin-source-104/src
Les sous-répertoires solidcoin-source-103/src/cryptopp et soldcoin-source-104/src/cryptopp sont identiques.
diff solidcoin-source-103/src/init.cpp soldcoin-source-104/src/init.cpp
323c323
<             HWND hwndPrev = FindWindowA("wxWindowNR", "SolidCoin 1.03");
---
>             HWND hwndPrev = FindWindowA("wxWindowNR", "SoldCoin 1.04");
Les sous-répertoires solidcoin-source-103/src/json et soldcoin-source-104/src/json sont identiques.
diff solidcoin-source-103/src/main.cpp soldcoin-source-104/src/main.cpp
424a425
>         {
425a427
>         }
1241,1247d1242
<     // Get prev block index
<     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
<     if (mi == mapBlockIndex.end())
<         return error("AcceptBlock() : prev block not found");
<     CBlockIndex* pindexPrev = (*mi).second;
<     int nHeight = pindexPrev->nHeight+1;
<
1258a1254,1260
>     // Get prev block index
>     map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
>     if (mi == mapBlockIndex.end())
>         return true;
>     CBlockIndex* pindexPrev = (*mi).second;
>     int nHeight = pindexPrev->nHeight+1;
>
1296c1298
<         return error("AcceptBlock() : prev block not found");
---
>         return true;
1374,1379c1376,1378
<         mapOrphanBlocks.insert(make_pair(hash, pblock2));
<         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
<
<         // Ask this guy to fill in what we're missing
<         if (pfrom)
<             pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
---
>         /*mapOrphanBlocks.insert(make_pair(hash, pblock2));
>         mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));*/
>         if (pfrom)  pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));   // Ask this guy to fill in what we're missing
1382,1385c1381,1383
<
<     // Store to disk
<     if (!pblock->AcceptBlock())
<         return error("ProcessBlock() : AcceptBlock FAILED");
---
>      // Store to disk
>      if (!pblock->AcceptBlock())
>          return error("ProcessBlock() : AcceptBlock FAILED");
2092,2093c2090
<                 // When this block is requested, we'll send an inv that'll make them
<                 // getblocks the next batch of inventory.
---
>                 // When this block is requested, we'll send an inv that'll make them getblocks the next batch of inventory.
2185c2182,2183
<             printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
---
>             pfrom->nShitSent++;
>             printf("got sent orphan tx %s from %s\n", inv.hash.ToString().substr(0,10).c_str(), pfrom->addr.ToString().c_str());
2187a2186,2194
>         else
>         {
>             printf("got sent badtx from %s\n",pfrom->addr.ToString().c_str());
>             pfrom->nBadtxsent+=5;
>         }
>         if(pfrom->nBadtxsent>10)
>         {
>             pfrom->fDisconnect=true;
>         }
diff solidcoin-source-103/src/net.h soldcoin-source-104/src/net.h
519a520
>     int nBadtxsent;
580a582
>         nBadtxsent=0;
Les sous-répertoires solidcoin-source-103/src/test et soldcoin-source-104/src/test sont identiques.
diff solidcoin-source-103/src/uibase.cpp soldcoin-source-104/src/uibase.cpp
595c595
< m_staticTextMain = new wxStaticText( this, wxID_ANY, _("Copyright (c) 2011 SolidCoin Developers\n\nThis is software based on bitcoin, improving the network performance and security whilst\nalso making connecting to the SolidCoin network easier for businesses and users.\n\nThis product includes software developed by the OpenSSL Project for use in the \nOpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by \nEric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard."), wxDefaultPosition, wxDefaultSize, 0 );
---
> m_staticTextMain = new wxStaticText( this, wxID_ANY, _("Copyright (c) 2011 SoldCoin Developers\n\nThis is software based on bitcoin, trying but failing to improve the network performance and security whilst\nalso making connecting to the SoldCoin network easier for businesses and users.\n\nThis product includes software developed by the OpenSSL Project for use in the \nOpenSSL Toolkit (http://www.openssl.org/) and cryptographic software written by \nEric Young (eay@cryptsoft.com) and UPnP software written by Thomas Bernard."), wxDefaultPosition, wxDefaultSize, 0 );
diff solidcoin-source-103/src/uibase.h soldcoin-source-104/src/uibase.h
132c132
< CMainFrameBase( wxWindow* parent, wxWindowID id = wxID_MAINFRAME, const wxString& title = _("SolidCoin 1.03"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 723,484 ), long style = wxDEFAULT_FRAME_STYLE|wxRESIZE_BORDER|wxTAB_TRAVERSAL );
---
> CMainFrameBase( wxWindow* parent, wxWindowID id = wxID_MAINFRAME, const wxString& title = _("SoldCoin 1.04"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxSize( 723,484 ), long style = wxDEFAULT_FRAME_STYLE|wxRESIZE_BORDER|wxTAB_TRAVERSAL );
diff solidcoin-source-103/src/ui.cpp soldcoin-source-104/src/ui.cpp
2022c2022
<     m_staticTextVersion->SetLabel(strprintf(_("version 1.03"), FormatFullVersion().c_str()));
---
>     m_staticTextVersion->SetLabel(strprintf(_("version 1.04"), FormatFullVersion().c_str()));
diff solidcoin-source-103/src/wallet.cpp soldcoin-source-104/src/wallet.cpp
1002,1005d1001
<
<     unsigned int nTxSize = ::GetSerializeSize(wtxNew, SER_NETWORK);
<     if(nTxSize>MAX_TX_SIZE) return false;   //new size limits on transactions
<

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
1714173046
Hero Member
*
Offline Offline

Posts: 1714173046

View Profile Personal Message (Offline)

Ignore
1714173046
Reply with quote  #2

1714173046
Report to moderator
1714173046
Hero Member
*
Offline Offline

Posts: 1714173046

View Profile Personal Message (Offline)

Ignore
1714173046
Reply with quote  #2

1714173046
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714173046
Hero Member
*
Offline Offline

Posts: 1714173046

View Profile Personal Message (Offline)

Ignore
1714173046
Reply with quote  #2

1714173046
Report to moderator
1714173046
Hero Member
*
Offline Offline

Posts: 1714173046

View Profile Personal Message (Offline)

Ignore
1714173046
Reply with quote  #2

1714173046
Report to moderator
1714173046
Hero Member
*
Offline Offline

Posts: 1714173046

View Profile Personal Message (Offline)

Ignore
1714173046
Reply with quote  #2

1714173046
Report to moderator
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 05:36:27 PM
 #2

Code:
~/soldcoin/src$ make -f ../build/makefile.unix solidcoind
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/util.o util.cpp
Assembler messages:
Fatal error: can't create ../obj/nogui/util.o: No such file or directory
make: *** [../obj/nogui/util.o] Error 1

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 04, 2011, 05:36:45 PM
 #3

This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin
...

I just said in another thread someone should fork the 1.03 version. It looks like you had the same idea.

Nice work. So nice I'm going to send you a 0.50BTC donation which at the current exchange rate should buy you a beverage or two of your choice.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 05:38:00 PM
 #4

Can you compile it? For some reason I'm getting same errors as above.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 05:40:46 PM
 #5

This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin
...
I just said in another thread someone should fork the 1.03 version. It looks like you had the same idea.

Nice work. So nice I'm going to send you a 0.50BTC donation which at the current exchange rate should buy you a beverage or two of your choice.
Nope, I read your post where you said that and then downloaded, diff'd, modified, saved and git'd the files in a hurry
But thanks Smiley


As for the binaries, I can provide Linux ones soon
Windows binaries will come a bit later

Edit: I didn't modify the makefile so the problem must be in the solidcoin makefile, I'll try to correct that soon

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 05:42:42 PM
 #6

This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin
...
I just said in another thread someone should fork the 1.03 version. It looks like you had the same idea.

Nice work. So nice I'm going to send you a 0.50BTC donation which at the current exchange rate should buy you a beverage or two of your choice.
Nope, I read your post where you said that and then downloaded, diff'd, modified, saved and git'd the files in a hurry



As for the binaries, I can provide Linux ones soon
Windows binaries will come a bit later

Edit: I didn't modify the makefile so the problem must be in the solidcoin makefile, I'll try to correct that soon

Well that definitely gives an advantage to linux users. Why don't you just release both at the same time.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 05:47:20 PM
 #7

Weird,
Code:
soldcoin-source-104/src$ make -f ../build/makefile.unix solidcoind
fully works here
Investigating...

@smoothie: I don't think it's a problem because right now there's nearly zero difference between solidcoin 1.04 and SLC 1.04
But if it's a problem ok I'll release them at the same time

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 05:47:43 PM
 #8

I'd live Linux binaries.
That would make me very happy.

EDIT:
Jackjack, does your system have anything in the obj directory in soldocoin?  I gitted the git and it has no such things.

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 05:50:07 PM
 #9

Weird,
Code:
soldcoin-source-104/src$ make -f ../build/makefile.unix solidcoind
fully works here

@smoothie: I don't think it's a problem because right now there's nearly zero difference between solidcoin 1.04 and SLC 1.04
But if it's a problem ok I'll release them at the same time

Thanks!

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 05:59:45 PM
 #10

I'd live Linux binaries.
That would make me very happy.

EDIT:
Jackjack, does your system have anything in the obj directory in soldocoin?  I gitted the git and it has no such things.
I managed to reproduce the problem: I fixed it by creating an empty "obj" directory, then creating empty "nogui", "gui" and "crypto" directories inside it

Please tell me if it works

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 06:02:57 PM
 #11

Gets further, craps out at upnp now. 
Code:
make -f ../build/makefile.unix solidcoind
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/util.o util.cpp
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/script.o script.cpp
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/db.o db.cpp
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/net.o net.cpp
net.cpp: In function ‘void ThreadMapPort2(void*)’:
net.cpp:1085:63: error: too few arguments to function ‘UPNPDev* upnpDiscover(int, const char*, const char*, int, int, int*)’
/usr/include/miniupnpc/miniupnpc.h:53:1: note: declared here
net.cpp:1100:72: error: too few arguments to function ‘int UPNP_AddPortMapping(const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*)’
/usr/include/miniupnpc/upnpcommands.h:117:1: note: declared here
make: *** [../obj/nogui/net.o] Error 1

I'll try reinstalling miniupnp or whatever it is.

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
joulesbeef
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


moOo


View Profile
September 04, 2011, 06:05:10 PM
 #12

soo is this a new chain? or just a new client? will my coins work here?

mooo for rent
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 06:05:18 PM
 #13

Gets further, craps out at upnp now. 
Code:
make -f ../build/makefile.unix solidcoind
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/util.o util.cpp
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/script.o script.cpp
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/db.o db.cpp
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/net.o net.cpp
net.cpp: In function ‘void ThreadMapPort2(void*)’:
net.cpp:1085:63: error: too few arguments to function ‘UPNPDev* upnpDiscover(int, const char*, const char*, int, int, int*)’
/usr/include/miniupnpc/miniupnpc.h:53:1: note: declared here
net.cpp:1100:72: error: too few arguments to function ‘int UPNP_AddPortMapping(const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*, const char*)’
/usr/include/miniupnpc/upnpcommands.h:117:1: note: declared here
make: *** [../obj/nogui/net.o] Error 1

I'll try reinstalling miniupnp or whatever it is.
Try:
Code:
make -f ../build/makefile.unix solidcoind USE_UPNP=

Also, please note that I edited my previous post: to compile solidcoind, obj/nogui is needed



soo is this a new chain? or just a new client? will my coins work here?
No, yes, yes

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 06:08:23 PM
 #14

Added that myself and turned off miniupnp in the makefile, now it compiles!
On run it ran into the .solidcoin from the previous client and borked, deleted that and now it runs, and I assume is downloading about five billion blocks.

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 06:11:50 PM
 #15

The new version in github now automatically creates the needed directories

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
gw4tt
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
September 04, 2011, 06:13:07 PM
 #16

Not a fork then just a client, title is misleading.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:13:52 PM
 #17

Not a fork then just a client, title is misleading.

Yeah definitely misleading, why else would I need a recompile of the client unless it was a fork?

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 06:14:55 PM
 #18

Not a fork then just a client, title is misleading.
Absolutely, thanks for pointing that out

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 06:16:18 PM
 #19

Aww, that's less exciting.
Fork it!  Make it Soldcoin just like the github directory Cheesy

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:18:06 PM
 #20

Aww, that's less exciting.
Fork it!  Make it Soldcoin just like the github directory Cheesy

+1000 AGREED Cheesy

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
joulesbeef
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


moOo


View Profile
September 04, 2011, 06:18:28 PM
 #21

and dont call it version 1.04  coinhunter already has a version 1.04 make it 1.04os or something to differentiate

mooo for rent
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:19:01 PM
 #22

I'd live Linux binaries.
That would make me very happy.

EDIT:
Jackjack, does your system have anything in the obj directory in soldocoin?  I gitted the git and it has no such things.
I managed to reproduce the problem: I fixed it by creating an empty "obj" directory, then creating empty "nogui", "gui" and "crypto" directories inside it

Please tell me if it works

Yes that is all that is needed tried to tell the "genius programmer" he thinks he is to create those dirs in the tarball to stop all the complaints but as you can see that lead to nowhere... BTW if you want a universal binary for OSX then I can compile you one up since I have everything already set up for doing that including the work around for that in my build script. PM me if interested.

Not a fork then just a client, title is misleading.

Yeah definitely misleading, why else would I need a recompile of the client unless it was a fork?

Well if every wanting to make changes to the source then you need this.

Right, but as JackJack said they clients should be identical.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
TheLaundryMan
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
September 04, 2011, 06:19:18 PM
 #23

Nice work. Keep it up. Save us who spent our time mining.

Bringing SC back.
film2240
Legendary
*
Offline Offline

Activity: 1022
Merit: 1000


Freelance videographer


View Profile WWW
September 04, 2011, 06:20:01 PM
 #24

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?

[This signature is available for rent.BTC/ETH/LTC or £50 equivalent a month]
[This signature is available for rent.BTC/ETH/LTC or £50 equivalent a month]
[This signature is available for rent.BTC/ETH/LTC or £50 equivalent a month]
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:21:17 PM
 #25

My vote is we do a fork and start the network over. But that's just me.  Grin

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
gw4tt
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
September 04, 2011, 06:22:27 PM
 #26

Aww, that's less exciting.
Fork it!  Make it Soldcoin just like the github directory Cheesy

fork it so it's opensource solidcoin vs coinhunter solidcoin, see which one wins.
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 06:22:49 PM
 #27

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?
Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
platorin
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
September 04, 2011, 06:23:23 PM
 #28

Have you guys got a new client for windows users yet? If yes, where could we download it from?
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:24:33 PM
 #29

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?
Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Is that the entire goal? To piss him off?

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 06:25:02 PM
 #30

Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Good enough for me!  Now we just need an exchange...

I'd rather it was a fully fork though, that'd piss him off even more!

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
TheLaundryMan
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
September 04, 2011, 06:29:35 PM
Last edit: September 09, 2011, 03:50:22 PM by Maged
 #31

There is no reason those who have spent their time mining should lose what they have, only to start another fork, so that the first few miners can get rich quick.


Continue the improvements, and keep it fair.
ohforf
Sr. Member
****
Offline Offline

Activity: 327
Merit: 250


we are legion


View Profile
September 04, 2011, 06:29:47 PM
 #32

Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Good enough for me!  Now we just need an exchange...

I'd rather it was a fully fork though, that'd piss him off even more!

There are 3 Exchanges that i know of:
https://btc-e.com/
https://solidcoin24.com
https://moonco.in

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
▀██████ EAT SLEEP DECENTRALIZE ██████▀
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:29:58 PM
 #33

Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Good enough for me!  Now we just need an exchange...

I'd rather it was a fully fork though, that'd piss him off even more!

I think starting anew gives their solidcoin clique less of an edge in the same market. Plus yes it would piss him off more if we did a restart/fork.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 06:30:24 PM
 #34

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?
Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Is that the entire goal? To piss him off?
For now yes, until there's a real demand for an opensource slc client

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:31:41 PM
 #35

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?
Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Is that the entire goal? To piss him off?
For now yes, until there's a real demand for an opensource client

Then don't hold back in the pissing him off process and fork the chain entirely.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 06:32:04 PM
 #36

Thing with continueing is that the blockchain (at least with the "official" client) is something over 2.5GB.  Bit much IMO.
Maybe the new client can trim that down, I don't really know how it works to be honest (Hey I should start my own fork!  I know enough right? Cheesy).

Plus, if we continue with the solidcoin blockchain we have to keep listening to CoinHunter and his baby lives.

EDIT:
Crap, I agree with Smoothie.  Or he agrees with me.  Either way I didn't expect that to happen!

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:33:11 PM
 #37

Thing with continueing is that the blockchain (at least with the "official" client) is something over 2.5GB.  Bit much IMO.
Maybe the new client can trim that down, I don't really know how it works to be honest (Hey I should start my own fork!  I know enough right? Cheesy).

Plus, if we continue with the solidcoin blockchain we have to keep listening to CoinHunter and his baby lives.

EDIT:
Crap, I agree with Smoothie.

Good point. I dont want to have to hear his crying.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
ohforf
Sr. Member
****
Offline Offline

Activity: 327
Merit: 250


we are legion


View Profile
September 04, 2011, 06:33:54 PM
 #38

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?
Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Is that the entire goal? To piss him off?
For now yes, until there's a real demand for an opensource client

Then don't hold back in the pissing him off process and fork the chain entirely.

Why dont you do  it ? No Skills ?

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
▀██████ EAT SLEEP DECENTRALIZE ██████▀
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
joulesbeef
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


moOo


View Profile
September 04, 2011, 06:35:37 PM
 #39

i'd rather it not fork as I have some sc to sell


jackjack might end up saving sc

Quote
Thing with continueing is that the blockchain (at least with the "official" client) is something over 2.5GB.

was already fixed. mine dir is 90 megs

mooo for rent
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:36:29 PM
 #40

How do I get this client?Does it affect my mining of SC? Would I need to do anything differently to the official 1.04?
Basically, the only difference between solidcoin 1.04 and soldcoin 1.04 is that if you use soldcoin it will REALLY piss off the "dev", so no: same coins, same gui, same network, same everything
Excluding open-source license

Is that the entire goal? To piss him off?
For now yes, until there's a real demand for an opensource client

Then don't hold back in the pissing him off process and fork the chain entirely.

Why dont you do  it ? No Skills ?

Yeah I have no skills. I'm just supporting someone who chooses not to troll the users that are going to use the fork.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
gw4tt
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
September 04, 2011, 06:36:58 PM
 #41

it probably will fork though. It's not a hard thing to do, if no one else does I could probably do it.
TheLaundryMan
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
September 04, 2011, 06:37:59 PM
 #42

Those who spent their time mining, should be allowed to keep their coins.

It's not about pissing off coinhunter or anyone else. It's about keeping the thousands who have spent their electricity and time mining, with their coins.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 04, 2011, 06:38:14 PM
Last edit: September 04, 2011, 07:43:07 PM by Maged
 #43

it probably will fork though. It's not a hard thing to do, if no one else does I could probably do it.

I suspect the first person to fork it will likely get the most response from the community given what has transpired with solidcoins in the past 48 hours.

Those who spent their time mining, should be allowed to keep their coins.

It's not about pissing off coinhunter or anyone else. It's about keeping the thousands who have spent their electricity and time mining, with their coins.

Tell that to Jackjack and also you can still use your coins on the exchanges that accept them.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 06:42:15 PM
 #44

Those who spent their time mining, should be allowed to keep their coins.

It's not about pissing off coinhunter or anyone else. It's about keeping the thousands who have spent their electricity and time mining, with their coins.
What are you talking about? I only forked the client, the network is exactly the same

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
TheLaundryMan
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
September 04, 2011, 06:44:14 PM
 #45

Those who spent their time mining, should be allowed to keep their coins.

It's not about pissing off coinhunter or anyone else. It's about keeping the thousands who have spent their electricity and time mining, with their coins.
What are you talking about? I only forked the client, the network is exactly the same

I'm disagreeing with smoothie not you. I praise keeping the chain. My apologies for not using the quote option.
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 04, 2011, 07:07:57 PM
 #46

Please remove or fix  /doc/readme.txt


While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 07:31:57 PM
 #47

Please remove or fix  /doc/readme.txt
Thanks, fix'd

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
film2240
Legendary
*
Offline Offline

Activity: 1022
Merit: 1000


Freelance videographer


View Profile WWW
September 04, 2011, 07:56:13 PM
 #48

Those who spent their time mining, should be allowed to keep their coins.

It's not about pissing off coinhunter or anyone else. It's about keeping the thousands who have spent their electricity and time mining, with their coins.

yeah,I share that sentiment.I mined a fair number of coins in less than a week and I don't want my coins to disappear.I don't care what some whining,idiot developer thinks is good for the rest of us,if he screws us around,we'll just create a fork of his works and see how he likes it then.I want to start asap for mining the SC fork so I can profit like I did the 1st time.

What is the new fork called? And where can I mine it?(which pools?)

Thanks

[This signature is available for rent.BTC/ETH/LTC or £50 equivalent a month]
[This signature is available for rent.BTC/ETH/LTC or £50 equivalent a month]
[This signature is available for rent.BTC/ETH/LTC or £50 equivalent a month]
Oldminer
Legendary
*
Offline Offline

Activity: 1022
Merit: 1001



View Profile
September 04, 2011, 08:01:00 PM
 #49

Smoothie, you said you made your 205 btc investing at the start, but in reality you sold much too early and made a large mistake. Your merely trying to find another chain so you can get rich quick. Eat a bag of dicks. 

+1

 Grin

If you like my post please feel free to give me some positive rep https://bitcointalk.org/index.php?action=trust;u=18639
Tip me BTC: 1FBmoYijXVizfYk25CpiN8Eds9J6YiRDaX
Bobnova
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
September 04, 2011, 08:03:22 PM
 #50

Those people who mined SC and held them were betting, and they bet wrong.
I'm one of 'em, sucks, but you have to be very naive indeed to believe that you're guaranteed a fantastic return for mining WhateverCoins.

SC folded, it may or may not have been predictable.  If you sold and got out in time, good job guessing right.
If you held and are now looking at a pile of nearly worthless coins, you fucked up.

Nobody but CoinHunter has any moral obligation to keep SC floating.  If someone chooses to do so then they're being very nice and you should thank them, but nobody has the right to demand SC be worked on by people other than coinhunter.

BTC:  1AURXf66t7pw65NwRiKukwPq1hLSiYLqbP
Lumpy
Full Member
***
Offline Offline

Activity: 237
Merit: 100


View Profile
September 04, 2011, 08:42:44 PM
 #51

The drama with CoinHunter has been going on for days and meanwhile the value of SC has been dropping. Even if SC 'appeared' to be 1.42x (or whatever) more profitable than Bitcoin, it was very risky to throw one's stakes in there. I feel sorry for those who have lost due to CH's foolishness, but it's not as if one couldn't see this coming.
julz
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001



View Profile
September 04, 2011, 08:46:03 PM
 #52

Rename the whole shebazzle SaladCoin in honour of the tosser who started solidcoin.

It will be interesting to see if the implementations get into a protocol fight.  
With bitcoin there will presumably be a common set of unit tests for implementers to work against.

With SaladCoin - just throw your code onto the same chopping block and try to keep your fingers clear of the other chefs knives.. don't worry if you're tossing a Waldorf and the other guy's cutting a Caesar - it's all just solid salad in the end!


@electricwings   BM-GtyD5exuDJ2kvEbr41XchkC8x9hPxdFd
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 04, 2011, 08:50:46 PM
 #53

I don't think another fork is going to help things, plus you'll cause more problems for miners than anyone else if you do that.
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 04, 2011, 08:53:53 PM
 #54

I don't think another fork is going to help things, plus you'll cause more problems for miners than anyone else if you do that.

Agreed. Keep the SolidCoin client open source so the network still runs. Replace the closed source ( or whatever ) clients with open source versions.

If anyone wants to use SolidCoin they can and the coinhunter loonypath no longer controls anything.
gw4tt
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
September 04, 2011, 08:57:08 PM
 #55

I don't think another fork is going to help things, plus you'll cause more problems for miners than anyone else if you do that. 

It's good for miners to have choices in what coin they mine.
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 04, 2011, 09:06:25 PM
 #56

I don't think another fork is going to help things, plus you'll cause more problems for miners than anyone else if you do that. 

It's good for miners to have choices in what coin they mine.

If you start another blockchain that's an open source version of Solidcoin, you'll essentially replace Solidcoin leaving the same number of options.
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 04, 2011, 09:11:39 PM
 #57

In the end, a new chain will mess people over who mined and invested, keeping an open source version doesn't.  By messing over people who've mined and invested you are strengthening the arguement that cryptocurrencies are a scam, and that's not good for anyone.  If you want a new chain to mine, IX, IO and SC are all still fairly new.
gw4tt
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
September 04, 2011, 09:15:18 PM
 #58

In the end, a new chain will mess people over who mined and invested, keeping an open source version doesn't.  By messing over people who've mined and invested you are strengthening the arguement that cryptocurrencies are a scam, and that's not good for anyone.  If you want a new chain to mine, IX, IO and SC are all still fairly new.

I haven't mined bitcoin since IXCoin came out. I mined around 20k of those. Mined I0 when it came out (still mining it right now as it's the most profitable). Mined SC as well. But I sell all mined coins same day usually.
Lumpy
Full Member
***
Offline Offline

Activity: 237
Merit: 100


View Profile
September 04, 2011, 09:33:43 PM
 #59

In the end, a new chain will mess people over who mined and invested, keeping an open source version doesn't.  By messing over people who've mined and invested you are strengthening the arguement that cryptocurrencies are a scam, and that's not good for anyone.  If you want a new chain to mine, IX, IO and SC are all still fairly new.

IMO it's irrelevant. Anyone could start a SolidCoin/Bitcoin fork at any point. Why would it make a difference if someone started a SolidCoin fork ("SoldCoin") now versus some other random fork? Supposedly there's something coming up Sep. 7th, and those who want to mine new forks will do so regardless of what happens here.
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 04, 2011, 10:03:21 PM
 #60

For the record, I'd like to state that I don't support solidcoin...
I just hate when a sucker wants to play god

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 05, 2011, 02:23:23 AM
 #61

Making a new fork would just make people dislike open source.

It will fork anyway if the majority choose to use this client . Just like democracy you dont get a say if 51% imposes their will.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 05, 2011, 02:24:39 AM
 #62

Making a new fork would just make people dislike open source.

It will fork anyway if the majority choose to use this client . Just like democracy you dont get a say if 51% imposes their will.

Only CoinHunter dislikes open source. The rest of us here like it just fine.

Why, are you him?

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 05, 2011, 02:32:48 AM
 #63

Making a new fork would just make people dislike open source.

It will fork anyway if the majority choose to use this client . Just like democracy you dont get a say if 51% imposes their will.

Only CoinHunter dislikes open source. The rest of us here like it just fine.

Why, are you him?

No. I merely want to point out that if the majority use this client it doesnt matter what I or CH thinks if you have the support of more than 51% of the miners.

Ideally you should make another chain instead of trying to fork this one.

Its purely democracy.
SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 05, 2011, 02:54:24 AM
 #64

For the record, I'd like to state that I don't support solidcoin...
I just hate when a sucker wants to play god

Thanks for providing an alternative. Although its more than about a license imo.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 05, 2011, 03:09:32 AM
 #65

For the record, I'd like to state that I don't support solidcoin...
I just hate when a sucker wants to play god

Thanks for providing an alternative. Although its more than about a license imo.

Yeah, competence comes into play too. As does having a face on the project that we don't want to throw water balloons filled with paint at.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 05, 2011, 03:10:35 AM
 #66

Yeah, competence comes into play too. As does having a face on the project that we don't want to throw water balloons filled with paint at.

That's quite the colorful expression!

/dodge

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 05, 2011, 03:27:53 AM
 #67

Yeah, competence comes into play too. As does having a face on the project that we don't want to throw water balloons filled with paint at.

That's quite the colorful expression!

/dodge

It was nicer than saying H2SO4.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
Artamir
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
September 05, 2011, 08:14:56 AM
 #68

are the linux binaries up already ?



Tried to compile by myself (have not done that ever yet) but it produces a failure.
I'm guessing it's cause some parts needed are missing on my computer.
Checked for this 'miniupnp' mentioned somewhere above, but could not find it on my system. Later found out it seems that debian hasn't included it in the 'stable' version. Guessing thats the problem why i can't compile myself? At least not do the 'make -f .....' part. Actually no clue what else to do after that then - sorry, totaly new to this and never got to the point: 'searching for a howto compile yourself for newbs' - and then read it.


Wonder if i still could use the 1.02 client to send transactions or if it will screw something up.
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 05, 2011, 08:45:55 AM
 #69

If I understand it correctly and please correct me if I am wrong, this is NOT a new blockchain but a real open source (under MIT licence) version off RealSolid's solidcoin client.
As you know, RealSolid added a really stupid home made "licence" to his version and pissed of most of the solidcoin supporters and the major exchange. Thank you RealSolid for trying to convert all the mined  solidcoins to asspennies. "Good" job, boy!
 
We have a new Open source client, please use it!

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 05, 2011, 08:46:10 AM
 #70

are the linux binaries up already ?



Tried to compile by myself (have not done that ever yet) but it produces a failure.
I'm guessing it's cause some parts needed are missing on my computer.
Checked for this 'miniupnp' mentioned somewhere above, but could not find it on my system. Later found out it seems that debian hasn't included it in the 'stable' version. Guessing thats the problem why i can't compile myself? At least not do the 'make -f .....' part. Actually no clue what else to do after that then - sorry, totaly new to this and never got to the point: 'searching for a howto compile yourself for newbs' - and then read it.


Wonder if i still could use the 1.02 client to send transactions or if it will screw something up.

Check the build-unix.txt file in the docs folder. For the specific problem you are having:

Requires miniupnpc for UPnP port mapping.  It can be downloaded from
http://miniupnp.tuxfamily.org/files/.  UPnP support is compiled in and
turned off by default.  Set USE_UPNP to a different value to control this:
USE_UPNP=   no UPnP support, miniupnp not required;
USE_UPNP=0  (the default) UPnP support turned off by default at runtime;
USE_UPNP=1  UPnP support turned on by default at runtime.

So basically, you want:
USE_UPNP= make -f ../build/makefile.unix solidcoin

You'll also want to make sure you've installed build-essential, libgtk2.0-dev, libssl-dev -- they actually list the apt-get commands you'll want to run in the build-unix.txt file I mentioned.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 05, 2011, 08:48:01 AM
 #71

USE_UPNP= make -f ../build/makefile.unix solidcoin

Just to clarify: That is USE_UPNP= and then a space. You are specifically setting a temporary shell variable 'USE_UPNP' to blank, then running the make command with that setting. Realized right after I posted that that you might try to correct the "typo" if you're not actually used to building software and have never seen shell variables used to control a build script before. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
Artamir
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
September 05, 2011, 09:48:16 AM
 #72

thanks for your help wolftaur

By looking into the make-unix.txt and comparing it with the installed .deb packages i knoticed i had missing a lot of packages.

It now starts compiling - i think thats what it does,
but i still get some errors.

most of them according to

../obj/nogui/net.o net.cpp

like: net.cpp:1115: error: 'freeUPNPDevlist' had was not declared in this scope
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 05, 2011, 10:39:04 AM
 #73

thanks for your help wolftaur

By looking into the make-unix.txt and comparing it with the installed .deb packages i knoticed i had missing a lot of packages.

It now starts compiling - i think thats what it does,
but i still get some errors.

most of them according to

../obj/nogui/net.o net.cpp

like: net.cpp:1115: error: 'freeUPNPDevlist' had was not declared in this scope
Are you sure you use "USE_UPNP= "?


Making a new fork would just make people dislike open source.

It will fork anyway if the majority choose to use this client . Just like democracy you dont get a say if 51% imposes their will.

Only CoinHunter dislikes open source. The rest of us here like it just fine.

Why, are you him?

No. I merely want to point out that if the majority use this client it doesnt matter what I or CH thinks if you have the support of more than 51% of the miners.

Ideally you should make another chain instead of trying to fork this one.

Its purely democracy.
I don't fork the chain, please stop spreading FUD


If I understand it correctly and please correct me if I am wrong, this is NOT a new blockchain but a real open source (under MIT licence) version off RealSolid's solidcoin client.
You understood correctly

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
dishwara
Legendary
*
Offline Offline

Activity: 1855
Merit: 1016



View Profile
September 05, 2011, 11:49:09 AM
 #74

When will windows compiled binary client will be released?
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 05, 2011, 01:57:52 PM
 #75

I'll try it in a few hours
I never compiled anything on windows though so don't wait for it too hardly


Also if anyone wants to contribute just send me pull requests on github

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
flower1024
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
September 05, 2011, 02:07:43 PM
 #76

hi jackjack

i like your fork very much - and i think its a good thing that you did not fork the blockchain.

BUT: CoinHunter,RealSolid and OldMiner are really bad for bitcoin (and for solidcoin in the longterm); as they are continuing to tell anybody how bad bitcoin is (they just dont realize that people will start thinking ALL cryptocurrencies are bad).

so my idea: is it feasable to fork the blockchain in a future block?

i am pretty sure most people will use your fork.
if you dont have the ressources to manage this fork properly i am sure you'll find many people in this forum (including me) which would like to assist you.
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 05, 2011, 02:18:41 PM
 #77

That's doable but I want to be sure there's a majority of people wanting this change
So in a week I can post a poll and see the results

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 05, 2011, 02:23:27 PM
 #78

This thread is about the only open-source solidcoin client
Please complain else where

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
flower1024
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
September 05, 2011, 02:26:09 PM
 #79


Now let's put blame where blame is due, when solidcoin was started Coinhunter/RealSolid issued a much more "agreeable" rhetoric where both coins could coexist side by side, he did mention there were problems that needed fixed so he took it upon himself to move in the right direction and start making those fixes.


ok, but the start time has finished and now we have a different situation


From Day 1 he got trolled viciously on a daily basis by various members around here, well it's probably not the best reaction but it sours one's mood I would imagine, so unfortunately Coinhunter/RealSolid tried to educate the tard muffins and they didn't like it and the trolling got stronger until another representative of the Bitcoin crew decided to undertake a Malicious attack on the solidcoin network.


thats just no (completly) true.

yes he got trolled by ArtForz (and i think this was a very stupid thing) but why do you think ArtForz is a representative of bitcoin?
gavin stated clearly that he things this guy is smart; NOTHING more. i do consider most hackers/crackers as smart - and i would take advice from them - that does not mean they are representing me in any way!


So in conjunction in reprimanding Coinhunters behavior here why don't you get realistic and reprimand the rest of the asshats around here that sit around their parents basements with their thumbs up their asses conceiving of new ways to treat people like shit while watching gay porn clips on the internet?


i think coinhunter (and his others names) should just stop to care.
its their job (btw it WAS their job) to make a currency.

a currency is build on trust.

i dont trust anybody who just sits their and cries "whooo you are so bad; you attacked my coins whaa".
come on....just take it as a man and concentrate on make your coins better. but dont forget who made it possible for solidcoin to start.
flower1024
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
September 05, 2011, 02:28:19 PM
 #80

This thread is about the only open-source solidcoin client
Please complain else where

you are right. apologize.

what do you think about a blockchain fork in a future block?
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 05, 2011, 02:44:33 PM
 #81

hi jackjack

i like your fork very much - and i think its a good thing that you did not fork the blockchain.

BUT: CoinHunter,RealSolid and OldMiner are really bad for bitcoin (and for solidcoin in the longterm); as they are continuing to tell anybody how bad bitcoin is (they just dont realize that people will start thinking ALL cryptocurrencies are bad).

so my idea: is it feasable to fork the blockchain in a future block?

i am pretty sure most people will use your fork.
if you dont have the ressources to manage this fork properly i am sure you'll find many people in this forum (including me) which would like to assist you.


Lets vote!

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 05, 2011, 02:45:38 PM
 #82

I answered that just before his post, you didn't see it or it doesn't answer your question?

That's doable but I want to be sure there's a majority of people wanting this change
So in a week I can post a poll and see the results

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
Moray
Full Member
***
Offline Offline

Activity: 143
Merit: 100


View Profile
September 05, 2011, 02:49:27 PM
 #83

Looking forward to it.   Smiley
thirdlight
Sr. Member
****
Offline Offline

Activity: 445
Merit: 250



View Profile
September 05, 2011, 02:57:16 PM
 #84

No need to vote, no need to fork.

jackjack has helpfully provided an open source version of a closed source client. Thankyou.

If jackjack wants to make an alternative blockchain, he is welcome to do so. I'm sure he would do it well & I'd be interested to see it.

jackjack has expressed no desire to do this, and certainly no desire to try to resurrect SolidCoin.

Can we just thank him for his client & let him go back to all the useful things he already does ?

If someone really wants to fork SolidCoin, that is their choice.

BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 05, 2011, 03:05:25 PM
 #85

jackjack has expressed no desire to do this,

Or ignore the part where he said he would assist and it be put to a vote.

Thanks jackjack btw.

flower1024
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
September 05, 2011, 03:23:03 PM
 #86

I answered that just before his post, you didn't see it or it doesn't answer your question?

That's doable but I want to be sure there's a majority of people wanting this change
So in a week I can post a poll and see the results

ok, i missed that.

thank you very much for your work!
looking forward to see

(btw. the phrase "That's doable but I want to be sure there's a majority of people wanting this change" just gave me the feeling you are the right person for this job!)
ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 05, 2011, 03:30:10 PM
 #87

I'd re-enable handling orphan blocks (add a size limit on the orphan blocks list if you are afraid of orphan floods), or the SC network will soon be quite dead (it's already starting to fork ...).

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
wallet.dat
Sr. Member
****
Offline Offline

Activity: 253
Merit: 250


View Profile
September 05, 2011, 04:20:24 PM
 #88

Are there any binaries yet?

"MOOOOOOOM! THE MEATLOAF!!! F**K!"
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 05, 2011, 06:54:50 PM
 #89

I'd re-enable handling orphan blocks (add a size limit on the orphan blocks list if you are afraid of orphan floods), or the SC network will soon be quite dead (it's already starting to fork ...).

Anyone want to offer a bounty to fix this?

If we actually fix things in the open source client we might end up with something better than coinhunters broken BitCoin.


I'd offer a bounty myself but I sent my last .50BTC to the spaghetti monster guy when he created the open source fork.
Gavin Andresen
Legendary
*
Offline Offline

Activity: 1652
Merit: 2216


Chief Scientist


View Profile WWW
September 05, 2011, 08:37:30 PM
 #90

Y'all probably want this:
  https://github.com/bitcoin/bitcoin/pull/491

However, I don't think you can fix all the problems that a fixed transaction fee cause; the real problem is that basic economics says that you need to let the price of a scare resource change, ideally in a market, to match the underlying real costs.

(bitcoin's fee structure isn't right either, and fixing it to create a market between miners and clients is high on the TODO list)

How often do you get the chance to work on a potentially world-changing project?
Artamir
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
September 05, 2011, 10:29:57 PM
 #91

Actually his basic idea of doing a fix fee, and making it that 'high' was to get higher income to miners.

As the whole basic plan was:

- Shorter time for blocks
- lower increase in difficulty
- way higher difficulty drop than raise
- additional higher income through the fees (which bring way more once there are enough transactions)

This all was about being able to mine faster, get the coins faster and reach the coin max faster - which btw was lower so each mined coin would in the end be more worth.

What he then later realised that just by mining you don't make money, you NEED someone who is willing to buy them, cause either speculation or being able to use them for someting.
This was when he - at least he said he did - contacted ruxum and mtgox. Cause just by producing something you don't make money. And i realy hoped - after he realized that - that this will become some project with possibly perspectives for the future.

But in the end everyone should realize that all this was born out of the wish to maximize potential income through mining. All this "improvements" where miner focused!
dserrano5
Legendary
*
Offline Offline

Activity: 1974
Merit: 1029



View Profile
September 05, 2011, 10:41:12 PM
 #92

Code:
~/soldcoin/src$ make -f ../build/makefile.unix solidcoind
g++ -c -O2 -Wno-invalid-offsetof -Wformat -g -D__WXDEBUG__ -DNOPCH -DUSE_SSL -DUSE_UPNP=0 -o ../obj/nogui/util.o util.cpp
Assembler messages:
Fatal error: can't create ../obj/nogui/util.o: No such file or directory
make: *** [../obj/nogui/util.o] Error 1

I'm probably late to this but I fixed and published this problem. Look into my last posts, it should appear within the last week or so.
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 05, 2011, 11:32:00 PM
 #93

I'd re-enable handling orphan blocks (add a size limit on the orphan blocks list if you are afraid of orphan floods), or the SC network will soon be quite dead (it's already starting to fork ...).

"It's already starting to fork"  . Haha, what a laugh. I was wondering why you had never really helped out the Bitcoin project but it's becoming obvious. You don't know C++ well.

To the OP it is fine if you want to develop a "open source" alternative to my "open source" program. Good luck with outpacing my development though. Just wondering when you are going to add more vuln. fixes, network improvements and multiwallet support like that which is due out in SolidCoin in a few days? Thanks for the support of SolidCoin, and good luck with your project.

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 05, 2011, 11:35:14 PM
 #94

I'd re-enable handling orphan blocks (add a size limit on the orphan blocks list if you are afraid of orphan floods), or the SC network will soon be quite dead (it's already starting to fork ...).

"It's already starting to fork"  . Haha, what a laugh. I was wondering why you had never really helped out the Bitcoin project but it's becoming obvious. You don't know C++ well.

To the OP it is fine if you want to develop a "open source" alternative to my "open source" program. Good luck with outpacing my development though. Just wondering when you are going to add more vuln. fixes, network improvements and multiwallet support like that which is due out in SolidCoin in a few days? Thanks for the support of SolidCoin, and good luck with your project.

I think this is funny because now Coinhunter is thanking Artforz for his support of solidcoin.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 05, 2011, 11:41:21 PM
 #95

I also forgot to add, make sure your new client is compatible with the API changes that exchanges and businesses will be using soon. I'm not sure how you can get those specs until I've released them, but nevertheless you can probably try! Smiley

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 05, 2011, 11:43:08 PM
 #96

I also forgot to add, make sure your new client is compatible with the API changes that exchanges and businesses will be using soon. I'm not sure how you can get those specs until I've released them, but nevertheless you can probably try! Smiley

Have fun getting those to become relevant if the open-source client has more than 51% of the mining user base. Which is likely since pools often apply patches that didn't come from you. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 05, 2011, 11:45:45 PM
 #97

I also forgot to add, make sure your new client is compatible with the API changes that exchanges and businesses will be using soon. I'm not sure how you can get those specs until I've released them, but nevertheless you can probably try! Smiley

Have fun getting those to become relevant if the open-source client has more than 51% of the mining user base. Which is likely since pools often apply patches that didn't come from you. Smiley

Yeah the only problem with that is I have solved the 51% problem and that is also coming out very soon. Oops, did SolidCoin just protect itself a lot better than Bitcoin? Smiley

Furthermore when anyone new to SolidCoin google searches for it, guess which site they'll be getting? So yes please go convince the mining pools to abandon the official version in favour of some featureless fork of SolidCoin from an earlier version because they'll be removed off the site, no longer get new visitors and earn the distrust of the whole SC community. ie They'll die like SCGuild and Bitparking.

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 05, 2011, 11:51:42 PM
 #98

I also forgot to add, make sure your new client is compatible with the API changes that exchanges and businesses will be using soon. I'm not sure how you can get those specs until I've released them, but nevertheless you can probably try! Smiley

Have fun getting those to become relevant if the open-source client has more than 51% of the mining user base. Which is likely since pools often apply patches that didn't come from you. Smiley

Yeah the only problem with that is I have solved the 51% problem and that is also coming out very soon. Oops, did SolidCoin just protect itself a lot better than Bitcoin? Smiley

Furthermore when anyone new to SolidCoin google searches for it, guess which site they'll be getting? So yes please go convince the mining pools to abandon the official version in favour of some featureless fork of SolidCoin from an earlier version because they'll be removed off the site, no longer get new visitors and earn the distrust of the whole SC community. ie They'll die like SCGuild and Bitparking.

Yeah bitparking is dying with its 3 other exchanges and three other pools. So is btcguild with their giant bitcoin mining pool. They are definitely dying.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
the joint
Legendary
*
Offline Offline

Activity: 1834
Merit: 1020



View Profile
September 05, 2011, 11:55:14 PM
 #99

CoinHunter, you really need to drop that aura of arrogance.

If you've done any reflection in the past several days I think you might realize it's a good idea.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 12:02:22 AM
 #100

CoinHunter, you really need to drop that aura of arrogance.

If you've done any reflection in the past several days I think you might realize it's a good idea.

I think the only 'reflection' he's been doing is watching himself masturbate in the mirror to stroke his ego at the same time he's stroking his tiny cock.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
aq
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
September 06, 2011, 12:05:05 AM
 #101

To the OP it is fine if you want to develop a "open source" alternative to my "open source" program. Good luck with outpacing my development though. Just wondering when you are going to add more vuln. fixes, network improvements and multiwallet support like that which is due out in SolidCoin in a few days? Thanks for the support of SolidCoin, and good luck with your project.

Wow! I think this is the first time he writes about himself in singular!
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 12:11:19 AM
 #102

To the OP it is fine if you want to develop a "open source" alternative to my "open source" program. Good luck with outpacing my development though. Just wondering when you are going to add more vuln. fixes, network improvements and multiwallet support like that which is due out in SolidCoin in a few days? Thanks for the support of SolidCoin, and good luck with your project.

Wow! I think this is the first time he writes about himself in singular!

Maybe he's started taking his Haldol again. We can only hope that means he'll be less of a self-deluded moron as time passes.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 06, 2011, 12:22:02 AM
 #103

Oh, and if you think the orphan block handling "improvements" (aka completely disabling it) in 1.031 doesn't hurt anything (well, other than nodes not catching up to the current block under certain circumstances)...
grep your debug.log for "getblocks".
Notice some nodes appear to be sending a GetBlocks for *every single block they get* while downloading the chain?
Notice the block #s are nowhere near the "bad evil hacker" blocks?
You got 3 guesses which versions are exhibiting that broken behaviour.

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 12:32:38 AM
 #104

Oh, and if you think the orphan block handling "improvements" (aka completely disabling it) in 1.031 doesn't hurt anything (well, other than nodes not catching up to the current block under certain circumstances)...
grep your debug.log for "getblocks".
Notice some nodes appear to be sending a GetBlocks for *every single block they get* while downloading the chain?
Notice the block #s are nowhere near the "bad evil hacker" blocks?
You got 3 guesses which versions are exhibiting that broken behaviour.

Can anyone explain what that means?

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
doublec
Legendary
*
Offline Offline

Activity: 1078
Merit: 1005


View Profile
September 06, 2011, 12:35:15 AM
 #105

Can anyone explain what that means?
It means some of the changes that CoinHunter/RealSolid's made in the commits below  are buggy:

https://github.com/doublec/solidcoin/commit/dd35c2a8876e7a5b2dee602911a0f4d3e9ef5323
https://github.com/doublec/solidcoin/commit/1f61387e8291d1c054c45d1b1517a3385cc1f45a
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 12:37:17 AM
 #106


Ahh yeah I gathered that, I just have no idea how to read or follow code. Why is it a bad thing if nodes do that GetBlock thing while downloading the chain?

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
greyhawk
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1009


View Profile
September 06, 2011, 12:38:45 AM
 #107

I also forgot to add, make sure your new client is compatible with the API changes that exchanges and businesses will be using soon. I'm not sure how you can get those specs until I've released them, but nevertheless you can probably try! Smiley

Have fun getting those to become relevant if the open-source client has more than 51% of the mining user base. Which is likely since pools often apply patches that didn't come from you. Smiley

Yeah the only problem with that is I have solved the 51% problem and that is also coming out very soon. Oops, did SolidCoin just protect itself a lot better than Bitcoin? Smiley

Furthermore when anyone new to SolidCoin google searches for it, guess which site they'll be getting? So yes please go convince the mining pools to abandon the official version in favour of some featureless fork of SolidCoin from an earlier version because they'll be removed off the site, no longer get new visitors and earn the distrust of the whole SC community. ie They'll die like SCGuild and Bitparking.

I think we need some new termonology to classify posts like this. Something like: "doing a Bruce Wagner".
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 12:40:31 AM
 #108

Can anyone explain what that means?

Because of network latency, two miners may publish a block roughly simultaneously and both blocks will be distributed through the network before they collide. Any given miner must pick one of the two blocks. The longest chain, in terms of proof-of-work performed, will always win. Ties are broken by whichever block a given node has seen first when mining.

If you have two competing blocks at the same count and one miner publishes a block after, it will lengthen only one of the two chains because it must pick one of the two blocks as its antecedent. Once this has propagated through the network, the preceding block that "lost" is an orphan.

Because of network latency, especially at 3 minutes per block, you can't prevent orphans from happening. Orphans are expected, and handled correctly -- by all Bitcoin and friends clients except CoinHunter's newest versions.

The reason why there is a 120 block confirmation on mined coins is because the generated coins in any orphan are invalid, and the client provides a lengthy wait to make sure that if there are two competing chains that forked several blocks in the past (due to, say, a broken network connection between two parts of the globe) they can be merged before the coins are spent. This is why sometimes a pool's solved block may suddenly show up as invalid 3 hours later -- it just took that long for it to lose.

CoinHunter broke the handling of orphan blocks. As a result you aren't just downloading a block chain, you're basically getting a block tree, and that's not how the system is meant to work...

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 12:43:25 AM
 #109

Can anyone explain what that means?

Because of network latency, two miners may publish a block roughly simultaneously and both blocks will be distributed through the network before they collide. Any given miner must pick one of the two blocks. The longest chain, in terms of proof-of-work performed, will always win. Ties are broken by whichever block a given node has seen first when mining.

If you have two competing blocks at the same count and one miner publishes a block after, it will lengthen only one of the two chains because it must pick one of the two blocks as its antecedent. Once this has propagated through the network, the preceding block that "lost" is an orphan.

Because of network latency, especially at 3 minutes per block, you can't prevent orphans from happening. Orphans are expected, and handled correctly -- by all Bitcoin and friends clients except CoinHunter's newest versions.

The reason why there is a 120 block confirmation on mined coins is because the generated coins in any orphan are invalid, and the client provides a lengthy wait to make sure that if there are two competing chains that forked several blocks in the past (due to, say, a broken network connection between two parts of the globe) they can be merged before the coins are spent. This is why sometimes a pool's solved block may suddenly show up as invalid 3 hours later -- it just took that long for it to lose.

CoinHunter broke the handling of orphan blocks. As a result you aren't just downloading a block chain, you're basically getting a block tree, and that's not how the system is meant to work...

Ahh gotcha.  I had read as much on how bitcoin handles orphans, just didn't know that CH broke it.

Offtopic:  Just saw RS boot doublec from #solidcoin for talking about this.  What a trip.

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
greyhawk
Hero Member
*****
Offline Offline

Activity: 938
Merit: 1009


View Profile
September 06, 2011, 12:46:11 AM
 #110


Offtopic:  Just saw RS boot doublec from #solidcoin for talking about this.  What a trip.

What? How retarded can one person possibly be?  Huh
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 12:48:10 AM
 #111


Offtopic:  Just saw RS boot doublec from #solidcoin for talking about this.  What a trip.

What? How retarded can one person possibly be?  Huh

Believe it or not, much, much, much worse than this. I'd hold up the owner of the company I worked for in 2007/2008 as an example but I'd be listing the stupids for the next three months even as fast as I type.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 06, 2011, 01:33:29 AM
 #112

Yeah the only problem with that is I have solved the 51% problem and that is also coming out very soon. Oops, did SolidCoin just protect itself a lot better than Bitcoin? Smiley

Furthermore when anyone new to SolidCoin google searches for it, guess which site they'll be getting? So yes please go convince the mining pools to abandon the official version in favour of some featureless fork of SolidCoin from an earlier version because they'll be removed off the site, no longer get new visitors and earn the distrust of the whole SC community. ie They'll die like SCGuild and Bitparking.

We are the SolidCoin community and we no longer trust your so called 'official' version due to the bugs you keep introducing, your unacceptable license change, and your erratic, insulting manner.

You think you can make changes to keep things incompatible with open source? You will exhaust yourself trying, fail, and still end up with an implementation that no-one is going to use. Everyone will forget you even exist when the next IOCoin comes out.

wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 01:38:20 AM
 #113

We are the SolidCoin community and we no longer trust your so called 'official' version due to the bugs you keep introducing, your unacceptable license change, and your erratic, insulting manner.

You think you can make changes to keep things incompatible with open source? You will exhaust yourself trying, fail, and still end up with an implementation that no-one is going to use. Everyone will forget you even exist when the next IOCoin comes out.

If he tries, do the usual 'net response.

Treat his censorship as damage and route around it.

Specifically, modify the client to reject his closed-source software's blocks. He wants incompatibility, let him have it. Odds are the closed-source block chain will be the one to die.

In the name of all that is sane, don't ever let CoinHunter have commit access to the git repository of the fork...

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 01:39:51 AM
 #114

We are the SolidCoin community and we no longer trust your so called 'official' version due to the bugs you keep introducing, your unacceptable license change, and your erratic, insulting manner.

You think you can make changes to keep things incompatible with open source? You will exhaust yourself trying, fail, and still end up with an implementation that no-one is going to use. Everyone will forget you even exist when the next IOCoin comes out.

If he tries, do the usual 'net response.

Treat his censorship as damage and route around it.

Specifically, modify the client to reject his closed-source software's blocks. He wants incompatibility, let him have it. Odds are the closed-source block chain will be the one to die.

In the name of all that is sane, don't ever let CoinHunter have commit access to the git repository of the fork...

Should be interesting for those who choose not to update to his new release that adds 1000 blocks to the chain. I'm not updating.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
julz
Legendary
*
Offline Offline

Activity: 1092
Merit: 1001



View Profile
September 06, 2011, 01:45:53 AM
 #115

We are the SolidCoin community and we no longer trust your so called 'official' version due to the bugs you keep introducing, your unacceptable license change, and your erratic, insulting manner.

You think you can make changes to keep things incompatible with open source? You will exhaust yourself trying, fail, and still end up with an implementation that no-one is going to use. Everyone will forget you even exist when the next IOCoin comes out.

If he tries, do the usual 'net response.

Treat his censorship as damage and route around it.

Specifically, modify the client to reject his closed-source software's blocks. He wants incompatibility, let him have it. Odds are the closed-source block chain will be the one to die.

In the name of all that is sane, don't ever let CoinHunter have commit access to the git repository of the fork...

Should be interesting for those who choose not to update to his new release that adds 1000 blocks to the chain. I'm not updating.

Even though that's just a joke - he attempts to wield so much control over the direction of the thing, that the chain is untrustworthy simply because he *could* do this if people actually used his system.

@electricwings   BM-GtyD5exuDJ2kvEbr41XchkC8x9hPxdFd
BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 06, 2011, 01:55:18 AM
 #116

I can put 60 GH/s on creating a new fork.

I am going to personally attempt to just let you guys play without judgement.  I can see that nearly all hate toward SolidCoin advancement is almost desired, it is hard to see things otherwise.   This is not saying that it will fail, in fact, going through some of your guys' tests may make it the strongest coin ever.  Doubt it, but I am not fully convinced SC is such the failure people make it out to be.

wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 02:00:58 AM
 #117

I am going to personally attempt to just let you guys play without judgement.  I can see that nearly all hate toward SolidCoin advancement is almost desired, it is hard to see things otherwise.   This is not saying that it will fail, in fact, going through some of your guys' tests may make it the strongest coin ever.  Doubt it, but I am not fully convinced SC is such the failure people make it out to be.

Because a still-open copy is being worked on, I didn't liquidate my SC. Having a non-closed client gives the currency some chance of succeeding despite the problems its original creator brought to the table. I won't take much of a loss if it crashes to zero, either. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
wallet.dat
Sr. Member
****
Offline Offline

Activity: 253
Merit: 250


View Profile
September 06, 2011, 02:07:24 AM
 #118

Thanks jackjack for your efforts.  Hopefully it's enough to get SC back on track since I really like some of the concepts and features behind it.

"MOOOOOOOM! THE MEATLOAF!!! F**K!"
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 02:11:56 AM
 #119

I can put 60 GH/s on creating a new fork.

I am going to personally attempt to just let you guys play without judgement.  I can see that nearly all hate toward SolidCoin advancement is almost desired, it is hard to see things otherwise.   This is not saying that it will fail, in fact, going through some of your guys' tests may make it the strongest coin ever.  Doubt it, but I am not fully convinced SC is such the failure people make it out to be.

You are right. It is the founder who was the failure. We all can agree on that.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 06, 2011, 02:20:31 AM
 #120

Specifically, modify the client to reject his closed-source software's blocks. He wants incompatibility, let him have it. Odds are the closed-source block chain will be the one to die.

It's a dead cert the closed source client will die if we keep a open source and honest version available. We totally have to do this. If he still has the power to add blocks he can flood the exchanges now or at any time in the future. It's bad enough we can't revoke coins he already pre-mined.

I may be wrong but this looks like coinhunter:
https://twitter.com/#!/feydr

You can see from the twitter photos he is a quick buck/blag artist type, or at least that's the impression I get.
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 06, 2011, 02:26:51 AM
 #121

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
wallet.dat
Sr. Member
****
Offline Offline

Activity: 253
Merit: 250


View Profile
September 06, 2011, 02:29:26 AM
 #122

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

I don't think anybody has any real issue with the concept of SolidCoin itself.  In fact I like it the most of all alt *coins and would like to see it succeed.

"MOOOOOOOM! THE MEATLOAF!!! F**K!"
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 06, 2011, 02:32:05 AM
 #123

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

It's the blockchain I want to see keep running, the client is only a means to do that. And I totally don't trust your changes to BitCoin, you made too many too fast and introduced many bugs doing it.

EDIT: I should add you told WAY too many lies and that destroyed any trust we had in you personally.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 02:34:54 AM
 #124

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

SolidCoin isn't poor. You're just pathetic.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 06, 2011, 02:39:33 AM
 #125

SolidCoin isn't poor. You're just pathetic.

So someone pathetic created something which isn't poor? Nice. Smiley

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 06, 2011, 02:42:07 AM
 #126

SolidCoin isn't poor. You're just pathetic.

So someone pathetic created something which isn't poor? Nice. Smiley

Your meds are wearing off dude. Take another handful of lithium before your next post.
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 06, 2011, 02:48:13 AM
 #127

Oh, and if you think the orphan block handling "improvements" (aka completely disabling it) in 1.031 doesn't hurt anything (well, other than nodes not catching up to the current block under certain circumstances)...

Under certain circumstances. Heh. You could say this with many things currently in Bitcoin.

I'm adding orphan storage to 1.10 but doing it properly,  ie will only store a certain amount on a rotating buffer to get around attacks people like you have created. The same issue you're talking about exists if you're flooding a node with shit, so it's not a complete solution is it? The reason I didn't implement a more thorough solution is I wanted to protect the users from the attacks you and others have created immediately, which it has done to this point.


grep your debug.log for "getblocks".
Notice some nodes appear to be sending a GetBlocks for *every single block they get* while downloading the chain?
Notice the block #s are nowhere near the "bad evil hacker" blocks?
You got 3 guesses which versions are exhibiting that broken behaviour.

Broken behaviour? A few extra getblock requests isn't going to hurt anything and in a lot of instances increases the speed of initial block downloading. Your FUD about chain forks is ridiculous. The people who are on the latest block (most of the network outside initial downloaders) won't be affected by orphan storage removal. In instances where multiple blocks are generated fast they still get the blocks quickly, it's just not as entirely efficient as 1.10 will be with it.

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 06, 2011, 03:00:41 AM
 #128

Oh my, CoinHunter and ArtForz in civil 'tech' conversation.  Surely I am in Bizzaro world :p

johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 03:19:19 AM
 #129

So someone pathetic created something which isn't poor? Nice. Smiley


You created bitcoin?  Oh wow, I didn't know you were....


Oh.  You adjusted a few variables.  *pats on head*

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
simonk83
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000


View Profile
September 06, 2011, 03:57:51 AM
 #130

Yeah the only problem with that is I have solved the 51% problem and that is also coming out very soon. Oops, did SolidCoin just protect itself a lot better than Bitcoin? Smiley

Furthermore when anyone new to SolidCoin google searches for it, guess which site they'll be getting? So yes please go convince the mining pools to abandon the official version in favour of some featureless fork of SolidCoin from an earlier version because they'll be removed off the site, no longer get new visitors and earn the distrust of the whole SC community. ie They'll die like SCGuild and Bitparking.

We are the SolidCoin community and we no longer trust your so called 'official' version due to the bugs you keep introducing, your unacceptable license change, and your erratic, insulting manner.

You think you can make changes to keep things incompatible with open source? You will exhaust yourself trying, fail, and still end up with an implementation that no-one is going to use. Everyone will forget you even exist when the next IOCoin comes out.



Let's not forget that the people seemingly involved with the new "fork" are much, much smarter than Coinhunter is (if the mess he's made of things so far are anything to go by). 
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 04:00:17 AM
 #131

It's a dead cert the closed source client will die if we keep a open source and honest version available. We totally have to do this. If he still has the power to add blocks he can flood the exchanges now or at any time in the future. It's bad enough we can't revoke coins he already pre-mined.

Yes we can.

Simply tell the client to reject as an input any transaction whos output is a generation in the relevant blocks, starting at block now. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
simonk83
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000


View Profile
September 06, 2011, 04:01:34 AM
 #132

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

You're just completely blind to your own idiocy aren't you.   Nobody has anything in for SolidCoin, it's YOU that's pissing everyone off and causing this whole thing.  
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 04:06:46 AM
 #133

You're just completely blind to your own idiocy aren't you.   Nobody has anything in for SolidCoin, it's YOU that's pissing everyone off and causing this whole thing.  

You'll never convince him. He's too stupid and delusional. He started with some pretty good community support: a pool over at BTCguild, an exchange at bitparking and at Ruxum...

He of course insists it's all ArtForz' fault, but it wasn't ArtForz' demonstration that caused two exchanges and a pool to go pretty much all at once:

It was his own actions, and his giant attempt to blame it on Bitcoin core developers.

And for all of his claims about how much smarter he is...

Hey, CoinHunter, if you're right and this is all ArtForz' and Gavin's fault, guess the degree to which it blew up in your face and hurt your currency proves they're way smarter than you are. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
dayfall
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250



View Profile
September 06, 2011, 05:23:08 AM
 #134

I have 1Ghash that I will *not* be putting towards a Solidcoin fork.
SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 06, 2011, 05:25:05 AM
 #135

So youre going to hurt all the people who got a bounty just because someone was abrasive ?

Some of the best chefs in the world are complete assholes yet you dont see people refusing to eat at their restaurants. Dont want to get hurt feelings? Dont go in the kitchen...
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 05:28:07 AM
 #136

So youre going to hurt all the people who got a bounty just because someone was abrasive ?

Some of the best chefs in the world are complete assholes yet you dont see people refusing to eat at their restaurants. Dont want to get hurt feelings? Dont go in the kitchen...

Perhaps the cook should stay in the kitchen and stop coming out into the dining room to confront those who don't agree with him.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 06, 2011, 05:33:49 AM
 #137

So youre going to hurt all the people who got a bounty just because someone was abrasive ?

Some of the best chefs in the world are complete assholes yet you dont see people refusing to eat at their restaurants. Dont want to get hurt feelings? Dont go in the kitchen...

And when you go to the restaurant you don't deal with the asshole chef or go in the kitchen you deal with the staff of the establishment who are usually very helpful or people don't go back no matter how good the food...

That is true. However that doesnt excuse the fact people want to exclude the first 30 000 coins mined which ARE ALL BOUNTY COINS.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 05:34:02 AM
 #138

So youre going to hurt all the people who got a bounty just because someone was abrasive ?

Some of the best chefs in the world are complete assholes yet you dont see people refusing to eat at their restaurants. Dont want to get hurt feelings? Dont go in the kitchen...

And when you go to the restaurant you don't deal with the asshole chef or go in the kitchen you deal with the staff of the establishment who are usually very helpful or people don't go back no matter how good the food...

+1 The cook shouldn't be the waiter, greeter, cashier, etc. They should just cook and that's all.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 05:41:02 AM
 #139

So youre going to hurt all the people who got a bounty just because someone was abrasive ?

Some of the best chefs in the world are complete assholes yet you dont see people refusing to eat at their restaurants. Dont want to get hurt feelings? Dont go in the kitchen...

Actually, my suggestion was that the prohibition on spending his pre-mined coins should be implemented at the current block. The people who PREVIOUSLY took bounty money in good faith before CoinHunter screwed up big time and lost control of his project should not be penalized.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
simonk83
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000


View Profile
September 06, 2011, 05:41:31 AM
 #140

Well, this appears to be the Number 1 viewed thread over the last 24 hours, by a fair margin Cheesy

http://bitcoinx.com/charts/

Topic                                                                                                     Score
[ANNOUNCE] New Solidcoin Client Fully Open-Source!                                      584
Bitcoin in France: first legal decision directly related to Bitcoin?                      206
[ANNOUNCE] SolidCoin - new and improved block chain. Secure from pools      188
Mooncoin - Solidcoin/Namecoin to BTC Exchange                                      176
Why BTC is losing value.                                                                      166
comrades, is bitcoin a great leap forward for international socialism?              130
Here we go again, bitcoin exchange rates have been doing just fine              105
bitcoin bear commentary, what happens if bitcoin breaks $8?                       62
at 7$ per btc i need to pull the plug                                                               60
Exchange accidentally sent 512 bitcoins after coding error                               60
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 06, 2011, 06:12:26 AM
 #141

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

CoinHunter, are you galactically stupid? You have to understand that community has no problem with the idea of solidcoin as a btc fork. Problem is the retarded monkey in solidcoin kitchen, who keeps damaging not only his own image and reputation (if there is anything left to damage) but keeps throwing shit at the entire BTC community. Unstable idiot like RealSolid (IRC) are the problem, not the software!
Remove the mad monkey, his home made "licence" and we all can move on.
Those idiots (RealSolid and his sock puppets) have pissed of exchanges, developers, investors etc. Sooner those unstable jokers are removed from the project, better it is for all of us.

Keep up the work with the fully open-source. Thank you.


While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 06:29:23 AM
 #142

CoinHunter, are you galactically stupid?

I think I know him well enough to answer for him.

FUCK YEAH.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
wallet.dat
Sr. Member
****
Offline Offline

Activity: 253
Merit: 250


View Profile
September 06, 2011, 06:31:16 AM
 #143

I will gladly run my whole farm on a new fork to get it going.

Remove the Bounty Coins and the inserted blocks. For all we know CoinHunter still holds a bunch of bounty coins.

I see a new fork a coming!

That would only serve to piss off more people than you probably want to just to get back at one guy.

"MOOOOOOOM! THE MEATLOAF!!! F**K!"
itsagas
Newbie
*
Offline Offline

Activity: 59
Merit: 0


View Profile
September 06, 2011, 06:32:36 AM
 #144

well actually, a fork WOULD test out his "new 51% attack prevention solution"
SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 06, 2011, 06:49:17 AM
 #145

So youre going to hurt all the people who got a bounty just because someone was abrasive ?

Some of the best chefs in the world are complete assholes yet you dont see people refusing to eat at their restaurants. Dont want to get hurt feelings? Dont go in the kitchen...

Actually, my suggestion was that the prohibition on spending his pre-mined coins should be implemented at the current block. The people who PREVIOUSLY took bounty money in good faith before CoinHunter screwed up big time and lost control of his project should not be penalized.

I think thats wise if you go down that path.

However who gets to choose who owns what coins ?

SolidCoin
Newbie
*
Offline Offline

Activity: 28
Merit: 0



View Profile
September 06, 2011, 06:50:58 AM
 #146

well actually, a fork WOULD test out his "new 51% attack prevention solution"


You are assuming compatibility with the current system. The longer fork would have to be accepted by the existing clients.
Detritus
Member
**
Offline Offline

Activity: 295
Merit: 98



View Profile
September 06, 2011, 08:29:32 AM
 #147

Who has the skills to start a new fork?

Starting a new chain involves changing one line of code. The one holding the genesis block.
 Recompiling and handing out the code.
davout
Legendary
*
Offline Offline

Activity: 1372
Merit: 1007


1davout


View Profile WWW
September 06, 2011, 08:33:36 AM
 #148

Starting a new chain involves changing one line of code. The one holding the genesis block.
 Recompiling and handing out the code.
Actually a couple of lines : the genesis timestamp, nonce, merkle root, and the actual block hash that you need to compute. But yes, it's not very hard, also don't forget to remove and hardcoded checkpoints Smiley

wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 08:40:28 AM
 #149

Starting a new chain involves changing one line of code. The one holding the genesis block.
 Recompiling and handing out the code.
Actually a couple of lines : the genesis timestamp, nonce, merkle root, and the actual block hash that you need to compute. But yes, it's not very hard, also don't forget to remove and hardcoded checkpoints Smiley

Don't forget to disable handling of orphans, if you're trying to be as stupid as CoinHunter. Also don't forget to provoke ArtForz and then the rest of the community all in 48 hours.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 09:02:03 AM
 #150

Starting a new chain involves changing one line of code. The one holding the genesis block.
 Recompiling and handing out the code.
Actually a couple of lines : the genesis timestamp, nonce, merkle root, and the actual block hash that you need to compute. But yes, it's not very hard, also don't forget to remove and hardcoded checkpoints Smiley

Don't forget to disable handling of orphans, if you're trying to be as stupid as CoinHunter. Also don't forget to provoke ArtForz and then the rest of the community all in 48 hours.

I'm serious, let's fork Solidcoin, invalidate all his premined and added blocks and run with it.

I vote to consider all unspent pre mined blocks invalid starting at, say, block 30,000. Use some common sense here: invalidating _ALL_ of them with no warning potentially fucks people who bought his pre mined coins on exchanges, or people who bought SC from whoever got bounties and cashed them out. CoinHunter did actually give some coins to SCguild for being the first pool to hit a certain size, and I got something like SC0.2 of that. I wouldn't care about losing 0.2 coins, but what about people who bought them legitimately, or took them as payments? And for that matter, since the coins all mix at exchanges, invalidating the blocks _PERIOD_ means random people could lose many of their LEGITIMATELY acquired coins.

Starting at block 30,000, we simply don't let them be spent. Then nobody who took coins in good faith is harmed, but CoinHunter still is. Smiley

Yes, I know we're past block 30,000, but the fork's going to be testing CoinHunter's claim about his 51%-proofing. And we'll probably have much more mining power than him. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
TheLaundryMan
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
September 06, 2011, 09:18:03 AM
 #151

Keep the chain going and fork it. I don't know if backwards compatability is possible but, everyone who got coins whether premined or not shouldn't suffer.
Detritus
Member
**
Offline Offline

Activity: 295
Merit: 98



View Profile
September 06, 2011, 09:45:34 AM
 #152


Don't forget to disable handling of orphans, if you're trying to be as stupid as CoinHunter. Also don't forget to provoke ArtForz and then the rest of the community all in 48 hours.

I think that a lot of us, with some minor effort, could produce a new block chain, again, and again, and again.

I just hope the same people are wise enough not too.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 09:58:31 AM
 #153

I just hope the same people are wise enough not too.

With proper handling of block lock-in that becomes much, much harder. But it's a good step towards securing a legitimate chain if things are forked.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
Detritus
Member
**
Offline Offline

Activity: 295
Merit: 98



View Profile
September 06, 2011, 10:08:56 AM
 #154


With proper handling of block lock-in that becomes much, much harder. But it's a good step towards securing a legitimate chain if things are forked.

Better off to let it die and be done with the whole sorry affair.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 10:12:29 AM
 #155

Better off to let it die and be done with the whole sorry affair.

It's ixcoins that really need to die. 580,000 pre-mined coins. Ugh. And some people actually believe it's not a scam.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
aq
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
September 06, 2011, 10:35:00 AM
 #156

Better off to let it die and be done with the whole sorry affair.

It's ixcoins that really need to die. 580,000 pre-mined coins. Ugh. And some people actually believe it's not a scam.


Quote from: Albert Einstein
Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 10:40:41 AM
 #157

Quote from: Albert Einstein
Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.

Pffft. Einstein only said that because he never saw CoinHunter's ego.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
Oldminer
Legendary
*
Offline Offline

Activity: 1022
Merit: 1001



View Profile
September 06, 2011, 10:42:03 AM
 #158

Better off to let it die and be done with the whole sorry affair.

It's ixcoins that really need to die. 580,000 pre-mined coins. Ugh. And some people actually believe it's not a scam.


Quote from: Albert Einstein
Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.


I can hear Wolfman's brain cells popping trying to figure that one out  Wink

If you like my post please feel free to give me some positive rep https://bitcointalk.org/index.php?action=trust;u=18639
Tip me BTC: 1FBmoYijXVizfYk25CpiN8Eds9J6YiRDaX
TheLaundryMan
Newbie
*
Offline Offline

Activity: 35
Merit: 0


View Profile
September 06, 2011, 10:46:18 AM
 #159

There is no reason not to keep going with solidcoin as an open source project. The bugs have been fixed. Quit taking your hate about a developer too far. Hes arrogant and an asshole, but the software is now fine to use and many people wish to continue it. He is not the head of the project anymore with this open source release. Mining pools should open back up and other exchanges that closed should open up again.
Spacy
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
September 06, 2011, 11:15:37 AM
 #160

There is no reason not to keep going with solidcoin as an open source project. The bugs have been fixed. Quit taking your hate about a developer too far. Hes arrogant and an asshole, but the software is now fine to use and many people wish to continue it. He is not the head of the project anymore with this open source release. Mining pools should open back up and other exchanges that closed should open up again.

+1

OSS wins most of the time...
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 11:27:11 AM
 #161

There is no reason not to keep going with solidcoin as an open source project. The bugs have been fixed. Quit taking your hate about a developer too far. Hes arrogant and an asshole, but the software is now fine to use and many people wish to continue it. He is not the head of the project anymore with this open source release. Mining pools should open back up and other exchanges that closed should open up again.

CoinHunter made a public claim that he's come up with a "defense" to keep "his" block chain from being affected by a majority of users being on the open source client. He also bragged about his plans to deliberately alter his client to "break" the open source one.

I suspect it's going to take a while for the dust to settle and I doubt Ruxum or bitparking is going to go with an open-source fork until such time as any attempt CoinHunter has made to break the fork has been proven to be a failure.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
Isepick
Full Member
***
Offline Offline

Activity: 180
Merit: 100


View Profile
September 06, 2011, 11:33:33 AM
 #162

Just let it die already. The SolidCoin brand is way too tainted now. And there is no guarantee that Mr. "Imma copyright everything" isn't going to start doing shit like trademarking "SolidCoin", etc etc which will screw people over on the open source side. Let it die. If you insist on needing an altcoin, then make a new one, with a new chain and a new name. This one is so horribly corrupted that none of the larger exchanges will ever touch it. Nor would any merchant that spent 30 seconds on google. Way too much confusion with, "No we are the *other* SolidCoin, not the bad one!"
BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 06, 2011, 12:10:18 PM
 #163

Best part about most of what you guys seem to be making out as his 'crazy talk', will be 'holy fuck he was a genius talk' after he succeeds.

This post made with ego stroking purposes only as a way to attempt to deflect all the hate. I do not fully believe what I typed Sad

aq
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
September 06, 2011, 12:17:57 PM
 #164

Best part about most of what you guys seem to be making out as his 'crazy talk', will be 'holy fuck he was a genius talk' after he succeeds.

This post made with ego stroking purposes only as a way to attempt to deflect all the hate. I do not fully believe what I typed Sad

Well, if coinhunter succeeds someday we are all domed, because coinhunter has the intelligence of Pinky and the attitude of Brain.
BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 06, 2011, 12:20:06 PM
Last edit: September 06, 2011, 12:48:11 PM by BitcoinPorn
 #165

because coinhunter has the intelligence of Pinky and the attitude of Brain.
I am so using this today on someone, and I'll sadly feel clever when I do it.


Edit, from Eskimo Bob


The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 06, 2011, 01:19:50 PM
 #166

Isn't it funny how "poor" SolidCoin is yet we have people writing open source clients for it, wanting to try to take control of it. If it was worthless they wouldn't want to, something to consider for the sane minds reading this thread. Smiley

You:
-Had some good ideas
-Created a currency who's success depends on more than 50% of users supporting it
-Seemingly pissed off more than 50% in all different ways

What did you think was going to happen?

I don't see you as a victim to trolls anymore, you have some control over this.  If you issued a sincere apology to the BTC community, the exchanges and guild operators, take down the hateful btc bullshit from your site, make your project truly open source again (according to standards), stop telling people to f*ck off if they don't like it and people will have less reason to create another SC chain.
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 06, 2011, 01:41:55 PM
 #167

Who are you kidding? They are a bunch of ass hats ... I once believed somewhat their way toward what was going on with IxCoin, then the fucktards go and make I0Coin, now they are doing the same shit here....  the real scammers are these douchebags, maybe they felt they missed the window or they are jealous, whatever, your all a bunch of lame fucks and cryptocurrency will suffer as a whole because of this community, if this is the public face of bitcoin it won't be long for the world.



 Can you explain to me how the open source chain is a scam?  It sounds like mined SCs are still good in it.
FractalUniverse
Hero Member
*****
Offline Offline

Activity: 1034
Merit: 558



View Profile
September 06, 2011, 01:46:28 PM
 #168

.. and cryptocurrency will suffer as a whole because of this community, if this is the public face of bitcoin it won't be long for the world.

yup
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 06, 2011, 02:06:41 PM
 #169

Not the way the rhetoric is going with these tards, and they don't care about an alternate coin, they are f'ing lying in the first place that Coinhunter is their only issue, they were bitching from the get-go, smoothie wishes he made more that 32 BTC off his early coins, wolftaur is just retaurded, Artforz is a just a dumbass who hurt a lot of people yet he is championed by the douche bags around here as some kind of hero.

It's a scam in the basis of this work is a lie, it isn't even about Coinhunter, just now that these fucks have villianized him this is their claim but go back and read the history of the posts, then go back and look at the history of the IxCoin posts ... you see a STARTLING resemblance in both.  These dumbasses have to be in control of the whole sha-bang.

I don't disagree some things Coinhunter said shouldn't have been said... the whole solid coin here when bitcoin fails article, I didn't publicize it, at that time I could see both in existence, but my experiences with these retarded people out here is changing my mind.  A good community would police it's own, and there have been and still are people in the true solid coin community speaking out against the license changes, and the article on solidcoin.info .... bitcoin on the other hand, that community is  just a bunch of fucks in the middle of a massive circle jerk.


I don't think you can group everyone here together like that, there's trolls on every board.  People seemed generally more interested in SC before the immature propaganda site went up.  None of those trolls went to the lengths of making an anti SC website, that I know of.  He's villainized himself.

If he'd ignored the trolls and treated everyone else with respect it would be doing much better.  The mining guild I was in and 2 of the three exchanges I used shut down.  I read the way CoinHunter chatted with Gavin, who hasn't done anything to him.  CH didn't invent Bitcoin, but he used the source then shit on everyone who worked on it.  Are you seriously going to argue that we should leave that guy in charge?  He doesn't know how to respect others, he's a PR nightmare for both BTC and SC, and he can't be reasoned with.
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 06, 2011, 02:16:03 PM
 #170

If you think he can be reasoned with, go back to the SC boards and try to make SC better instead of coming here and protesting the open source version.
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 02:57:13 PM
 #171

Not the way the rhetoric is going with these tards, and they don't care about an alternate coin, they are f'ing lying in the first place that Coinhunter is their only issue, they were bitching from the get-go, smoothie wishes he made more that 32 BTC off his early coins, wolftaur is just retaurded, Artforz is a just a dumbass who hurt a lot of people yet he is championed by the douche bags around here as some kind of hero.

It's a scam in the basis of this work is a lie, it isn't even about Coinhunter, just now that these fucks have villianized him this is their claim but go back and read the history of the posts, then go back and look at the history of the IxCoin posts ... you see a STARTLING resemblance in both.  These dumbasses have to be in control of the whole sha-bang.

I don't disagree some things Coinhunter said shouldn't have been said... the whole solid coin here when bitcoin fails article, I didn't publicize it, at that time I could see both in existence, but my experiences with these retarded people out here is changing my mind.  A good community would police it's own, and there have been and still are people in the true solid coin community speaking out against the license changes, and the article on solidcoin.info .... bitcoin on the other hand, that community is  just a bunch of fucks in the middle of a massive circle jerk.

I did make more than 32 BTC. I made 205.  Cheesy

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 06, 2011, 03:28:18 PM
 #172

*ponders writing a response*

*checks viperjbms post history*

*wanders off*

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
aq
Full Member
***
Offline Offline

Activity: 238
Merit: 100


View Profile
September 06, 2011, 03:38:08 PM
 #173

And before I am accused of vehemently supporting SLC because of loosing money, jokes on you because I have not spent a dime of my money on either coin system, I just want to promote the technology.  And since both coin systems are loosing money hand over foot now it doesn't matter much which you are in.
So basically you say, you are just one of coinhunters disciples?
dishwara
Legendary
*
Offline Offline

Activity: 1855
Merit: 1016



View Profile
September 06, 2011, 04:01:28 PM
 #174

Politics bullshits everyone & everything & brings THE END.
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 04:02:35 PM
 #175



Trolls show up everywhere, free speech should be allowed (unless RS kicks you out of IRC), ideas should flow (unless you take a previous open project, screw up the code and then close it again) - Solidcoins public face has become 70% troll and they have become intent on crushing their own coin.



FTFY.

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
TwistedPair
Newbie
*
Offline Offline

Activity: 17
Merit: 0



View Profile
September 06, 2011, 04:22:09 PM
 #176

There is no reason not to keep going with solidcoin as an open source project. The bugs have been fixed. Quit taking your hate about a developer too far. Hes arrogant and an asshole, but the software is now fine to use and many people wish to continue it. He is not the head of the project anymore with this open source release. Mining pools should open back up and other exchanges that closed should open up again.

How are you so sure Solidcoin is "now fine"? The one and only developer is adding other people's untested commits to the original Bitcoin client and adding his own sauce.

For example, how long was the testing period between when 1.04 was implemented and released?

Advertising Solidcoin as a safer alternative to Bitcoin is a specious.

so alternate forks should be promoted to a certain degree where they are providing solutions and further data to analyse to determine the best values for these, having only a single chain is like having all our eggs in one basket.

And why should Gavin actively promote *coins? He probably has a bunch of btcs so he's incentive is to promote Bitcoin, not other chains.

Solidcoin is set up in a manner to improve general adoption by trying out parameters that could help enable businesses to be more willing to use cryptocurrency and help end users have a better and safer experience,

By adding other people's untested patches and randomly adding their own stuff with no peer review? That isn't aligned with common business practices. Parroting Coinhunter's FUD doesn't make it true.

An interface with a nice icon and a bigger font for the wallet total does not make for more adoption long term. A safer, more scalable client does. And that's what Gavin is focusing on. It doesn't matter how pretty your safe is, if it can be broken into with a butter knife.

Face it, Solidcoin was a interesting attempt but hubris and lack of testing killed it. You're better of with i0coin/ixcoin as they have less changes to the original Bitcoin client.

grndzero
Sr. Member
****
Offline Offline

Activity: 392
Merit: 250


View Profile
September 06, 2011, 04:32:05 PM
 #177

Are there any list of actual features that differentiate solidcoin from Bitcoin?
Any that actually have merit?

If it was all fluff and hype then let it die.




Ubuntu Desktop x64 -  HD5850 Reference - 400Mh/s w/ cgminer  @ 975C/325M/1.175V - 11.6/2.1 SDK
Donate if you find this helpful: 1NimouHg2acbXNfMt5waJ7ohKs2TtYHePy
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 04:39:04 PM
 #178

Are there any list of actual features that differentiate solidcoin from Bitcoin?

It gets mandatory updates every other day.

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
The Electric Monk
Newbie
*
Offline Offline

Activity: 56
Merit: 0



View Profile
September 06, 2011, 04:45:36 PM
 #179

I think we should rename SolidCoin if we go through with this.  There's going to be all kinds of confusion, and CoinHunter is right that people will come across his site first on Google for now.  

I vote for Space Credits.  I've posted this before, but I think it might be good for publicity.  'Space Credits' sound familiar to most people, especially geeks who'll be earlier adopters.  The other reason is media attention helps the popularity of coins:  Space credits could be an ideal outside currency to the new Starwars mmo.  From what I've read it's a WOW killer, and these coins are ideal for trading in games.  My buddies and I already use small amounts in minecraft.

http://i287.photobucket.com/albums/ll128/chucknorrisfan/spacecredits.png
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 06, 2011, 04:56:15 PM
 #180

I think we should rename SolidCoin if we go through with this.  There's going to be all kinds of confusion, and CoinHunter is right that people will come across his site first on Google for now.

I agree. A new name is needed. Space Credits does sound cool.

We also need to make sure open source clients don't accept any of coinhunters non-mined cheat blocks or anything else weird he tries to abuse the blockchain with.
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 05:02:05 PM
 #181

Are there any list of actual features that differentiate solidcoin from Bitcoin?
Any that actually have merit?

If it was all fluff and hype then let it die.

Yes several.  To name a couple I got to experience first hand:

Fixed fees - in usage it was very nice, you always knew what you were going to pay and you didn't have to hit send to find out that you didn't have enough fees in you wallet to cover a transaction and then scale back a little and the fee gets changed so now you are left with coins in your wallet etc.  Additionally, fees are removed from the equation of transaction priority in this way so even when Dumbass Extraordinaire Artforz attacked this feature, people could still make transactions they were just coming in slower than they should have.

Quicker Block Times - 10 minute rule is highly theoretical with no real model behind it, yet somehow it became the f'ing gospel around here, don't believe me, go back and look at Satoshi's own posts.  It was a nice round number that he felt which seemed to be a reasonable time.  3 minutes was and is much more user friendly, when I would transfer coins between exchanges and what not to do some "day trading" it was much more pleasant to do it with SLC than with BTC, unfortunately I had to do it with BTC on occasion and waiting an f'ing hour or more to get the minimum confirmations was rediculous.  Even Ruxum who had the strictest SLC minimum confirmations time I could have them in and usable in about 30 minutes tops.

Better handling of difficulty changes - Between controlled ascent and descent, faster block times, and more frequent difficulty updates the SLC network responded FAR better than the others with rising and falling hash rates, not once did SLC get in a situation where it would take months to get a difficulty change and not once did it ever take more than an unreasonable number of minutes to get confirmations... prior to SLC all the other cryptocurrencies had this problem.

There are more, but those are the ones I experience first hand.  And you know what? they worked and worked well.  Dumbass Extraordinaire attacking the system the way he did is not proof fixed fees are bad, it just found a bug that is in all current cryptocurrencies, it just costs more to execute in BTC... so ya hate the feature if you want but it is necessary for a user/merchant friendly system and there are other solutions to that problem than making it expensive to execute....

Fixed fees?  Block timers?  Those are variables guy.  The fixed fee 'improvement' is what brought down SC the first time wasn't it?  Quicker block times brings lower secerity.  The difficulty algo has already been demonstrated to cater to card-farms while the 'little guy' has to do more work and gets paid less.

So... what were you saying?

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 05:29:50 PM
 #182

Fixed fees?  Block timers?  Those are variables guy.  The fixed fee 'improvement' is what brought down SC the first time wasn't it?  Quicker block times brings lower secerity.  The difficulty algo has already been demonstrated to cater to card-farms while the 'little guy' has to do more work and gets paid less.

So... what were you saying?

Do you at this point even know what you are talking about?  Security is NO WORSE OFF, this system is not based on the time of the blocks, if the chosen time works it becomes a race for confirmations from a legit and nonlegit source, if the network works at 1 second blocks it would have the same security as blocks over 10 days.... the whole smaller block times is less secure is the f'ing king garbage argument around here ---- seriously go and look at what satoshi himself said on the topic it wasn't much more than a guess on an ideal number to balance block size and network efficiency, security wasn't an issue with the time.

Fixed fees were attacked by king douche for sure, but the fees were NOT the bug, they just made the bug cheaper to execute and the bug lives on in BTC, are you really that dumb to not realize this?

Cater to card farms?.... how the f so?  because for a short while they are hashing at below optimal difficulty?  The 'little guy' is hurt already with the advent of pools, at this stage in BTC unless you are in a pool or have immense resources of your own solo mining is not feasible, at least with the difficulty algo changes in SLC the 'little guy' won't get his difficulty raped out from under him immediately and when the 'card farm' jumps ship the 'little guy' will get back to reasonable difficulty much faster.



Caters to cartels https://bitcointalk.org/index.php?topic=40772.msg501511#msg501511

The fixed fee was his way of not understanding what was going on.  It took what, 1SC total to bring it down?  At the time that was 10 cents.  Great securty there fella.  Next time I drop some change I'll give ya'll a heads up.

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
jackjack (OP)
Legendary
*
Offline Offline

Activity: 1176
Merit: 1233


May Bitcoin be touched by his Noodly Appendage


View Profile
September 06, 2011, 06:03:14 PM
 #183

Wow, it seems my thread got much attention

I quickly read all the posts but can't reply to all, actually I just want one answer: where did CH said he will make weird changes to his client so that it will be impossible to use the open-source one?
If that guy really wants a blockchain split, he could have just asked it here

Also guys, please don't feed them too much

Own address: 19QkqAza7BHFTuoz9N8UQkryP4E9jHo4N3 - Pywallet support: 1AQDfx22pKGgXnUZFL1e4UKos3QqvRzNh5 - Bitcointalk++ script support: 1Pxeccscj1ygseTdSV1qUqQCanp2B2NMM2
Pywallet: instructions. Encrypted wallet support, export/import keys/addresses, backup wallets, export/import CSV data from/into wallet, merge wallets, delete/import addresses and transactions, recover altcoins sent to bitcoin addresses, sign/verify messages and files with Bitcoin addresses, recover deleted wallets, etc.
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 06, 2011, 06:46:58 PM
 #184

Wow, it seems my thread got much attention

I quickly read all the posts but can't reply to all, actually I just want one answer: where did CH said he will make weird changes to his client so that it will be impossible to use the open-source one?
If that guy really wants a blockchain split, he could have just asked it here

Also guys, please don't feed them too much

More taunting
 

To the OP it is fine if you want to develop a "open source" alternative to my "open source" program. Good luck with outpacing my development though. Just wondering when you are going to add more vuln. fixes, network improvements and multiwallet support like that which is due out in SolidCoin in a few days? Thanks for the support of SolidCoin, and good luck with your project.

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 06, 2011, 07:42:04 PM
 #185

We MUST stop him at ANY cost.
His probable "success" will bring down the entire idea of cryptocurrency forever.

Also if he will fail epically, it will be the lesson to next greedy morons in line.

We should stop him by ensuring the open source client is used by over by 51% of miners and almost all users and by ensuring it rejects any weird blocks he injects into the blockchain. Once that is done we should forget this project ever existed and let it die in peace.

However don't expect this to stop the next greedy moron, the world produces these guys at an amazing rate.
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 07:50:06 PM
 #186

Are there any list of actual features that differentiate solidcoin from Bitcoin?

It gets mandatory updates every other day.

I wouldn't call a mandatory updates to fix a series of errors that made the block chain either vulnerable to attack, or useless for transferring more than, what, $20 worth of SC, to be "features."

But I suppose if you're using the Microsoft or Adobe playbooks, yeah, those are kickass features and CoinHunter is a genius.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 07:52:12 PM
 #187

Fixed fees?  Block timers?  Those are variables guy.  The fixed fee 'improvement' is what brought down SC the first time wasn't it?  Quicker block times brings lower secerity.  The difficulty algo has already been demonstrated to cater to card-farms while the 'little guy' has to do more work and gets paid less.

So... what were you saying?

Nothing of value, relevance, or usable fact.

Join ArtForz and I in just not even responding to this guy's obvious bias and lack of understanding of what he's talking about. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
coblee
Donator
Legendary
*
Offline Offline

Activity: 1653
Merit: 1286


Creator of Litecoin. Cryptocurrency enthusiast.


View Profile
September 06, 2011, 08:21:32 PM
Last edit: September 06, 2011, 08:59:44 PM by coblee
 #188

Y'all probably want this:
  https://github.com/bitcoin/bitcoin/pull/491

However, I don't think you can fix all the problems that a fixed transaction fee cause; the real problem is that basic economics says that you need to let the price of a scare resource change, ideally in a market, to match the underlying real costs.

(bitcoin's fee structure isn't right either, and fixing it to create a market between miners and clients is high on the TODO list)

CH/RS should really learn from Gavin instead of criticizing him for being a hacker supporter. When ArtForz approached CH/RS with the vulnerabilities in SolidCoin, he was basically told to get lost. So ArtForz got upset and did a fairly nice attack on the SolidCoin chain to prove his point. He sent these large transactions one at a time, which slowed down the network and actually showed another vulnerability in both Bitcoin and SolidCoin. He could have done a lot worse if he released a ton of these huge transactions at the same time. If he did that, it would have likely killed all the clients.

I assume ArtForz approached Gavin with this out of space vulnerability in Bitcoin. And instead of telling ArtForz to get lost, Gavin worked with him to fix the vulnerability. That's how a mature and competent lead on a big open source project is supposed to act. If someone is nice enough to come to you to tell you about a potential vulnerability, you work with him to fix it instead of pissing him off so that he would actually try to attack your chain with that vulnerability.

smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 08:46:59 PM
 #189

SC/RS should really learn from Gavin instead of criticizing him for being a hacker supporter. When ArtForz approached SC/RS with the vulnerabilities in SolidCoin, he was basically told to get lost. So ArtForz got upset and did a fairly nice attack on the SolidCoin chain to prove his point. He sent these large transactions one at a time, which slowed down the network and actually showed another vulnerability in both Bitcoin and SolidCoin. He could have done a lot worse if he released a ton of these huge transactions at the same time. If he did that, it would have likely killed all the clients.

I assume ArtForz approached Gavin with this out of space vulnerability in Bitcoin. And instead of telling ArtForz to get lost, Gavin worked with him to fix the vulnerability. That's how a mature and competent lead on a big open source project is supposed to act. If someone is nice enough to come to you to tell you about a potential vulnerability, you work with him to fix it instead of pissing him off so that he would actually try to attack your chain with that vulnerability.

The unintended consequences of king douche bag's attack is though that he hurt a lot of people beyond Coinhunter even.  Thats where the ass hat looses 100% respect and credibility.  He also apparently know about other underlying bugs in the cryptocurrency systems which inadvertently killed peoples nodes (also from Bitcoin).  Yet the scum out here champions him as some great Hero of douche bag ville....  says a lot about this community.....

Please do us all a favor and take your crying elsewhere. Thank you very much.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 08:51:13 PM
 #190

The unintended consequences of king douche bag's attack is though that he hurt a lot of people beyond Coinhunter even.  Thats where the ass hat looses 100% respect and credibility.  He also apparently know about other underlying bugs in the cryptocurrency systems which inadvertently killed peoples nodes (also from Bitcoin).  Yet the scum out here champions him as some great Hero of douche bag ville....  says a lot about this community.....

I'm not saying ArtForz is a hero. But I'd pick ten of him over CoinHunter any day.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
coblee
Donator
Legendary
*
Offline Offline

Activity: 1653
Merit: 1286


Creator of Litecoin. Cryptocurrency enthusiast.


View Profile
September 06, 2011, 09:04:41 PM
 #191

CH/RS should really learn from Gavin instead of criticizing him for being a hacker supporter. When ArtForz approached CH/RS with the vulnerabilities in SolidCoin, he was basically told to get lost. So ArtForz got upset and did a fairly nice attack on the SolidCoin chain to prove his point. He sent these large transactions one at a time, which slowed down the network and actually showed another vulnerability in both Bitcoin and SolidCoin. He could have done a lot worse if he released a ton of these huge transactions at the same time. If he did that, it would have likely killed all the clients.

I assume ArtForz approached Gavin with this out of space vulnerability in Bitcoin. And instead of telling ArtForz to get lost, Gavin worked with him to fix the vulnerability. That's how a mature and competent lead on a big open source project is supposed to act. If someone is nice enough to come to you to tell you about a potential vulnerability, you work with him to fix it instead of pissing him off so that he would actually try to attack your chain with that vulnerability.

The unintended consequences of king douche bag's attack is though that he hurt a lot of people beyond Coinhunter even.  Thats where the ass hat looses 100% respect and credibility.  He also apparently know about other underlying bugs in the cryptocurrency systems which inadvertently killed peoples nodes (also from Bitcoin).  Yet the scum out here champions him as some great Hero of douche bag ville....  says a lot about this community.....

I'm not sure why you are defending CH/RS so much on these forums. It just seems like you are his minion or something OR that you get some benefit for doing it.

Did ArtForz hurt a lot of people's coins? Yes. But those were speculators speculating on a risky currency. They knew what they got into or should have known. The fact that it's risky is because the new currency is untested. With the code CH/RS put into it, you can't be sure it's not full of bugs. And they obviously had no idea that CH/RS will self destruct like that. So live and learn.

I actually believe that what ArtForz did was best for SolidCoin. It showed what kind of person CH/RS really is. It made a lot of people wise up and sell their SolidCoins before it was too late. If ArtForz did not expose SolidCoin's vulnerability *and* CH/RS's real self, SolidCoin's would have lasted a bit longer. More people would have bought in and be invested in this coin. All this (vulnerabilities and CH/RS's incompetence in fixing issues and his behavior) will inevitably come out at a later point. And when that happens, more people would have been hurt.

simonk83
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000


View Profile
September 06, 2011, 09:11:14 PM
 #192

The unintended consequences of king douche bag's attack is though that he hurt a lot of people beyond Coinhunter even.  Thats where the ass hat looses 100% respect and credibility.  He also apparently know about other underlying bugs in the cryptocurrency systems which inadvertently killed peoples nodes (also from Bitcoin).  Yet the scum out here champions him as some great Hero of douche bag ville....  says a lot about this community.....

I'm not saying ArtForz is a hero. But I'd pick ten of him over CoinHunter any day.

Welcome to douche bag ville....

I'd take Richard the Lionheart over the f'ing court jesters... he may not be generally liked but at least he is doing something productive....

Maybe one day there will be a winston ch. in charge but until then you goons are fricken hillarious....

You're not fooling anyone, and you're just coming across as a dick.  Go away.
ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 06, 2011, 09:35:13 PM
 #193

... he should be banned from these forums at a very minimum and Gavin as the de-facto head around here should denounce his actions.  Above all else I'll shut up completely as soon as I see as many posts out here complaining about Coinhunter also complaining about Artforz and calling the scum sucker to be banned from these forums ...
For which part?
Telling RS/CH/His Royal Highness that his changed fee rules were allowing massive tx for nearly free?
Using the system within said rules after getting told that those rules are perfectly fine?
Finding a lack of optimization inherited from bitcoin in the process?
Informing the bitcoin developers about said lack of optimization and submitting a patch that (well, at least partially...) fixes it?
</troll>

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
cgpgroup
Full Member
***
Offline Offline

Activity: 140
Merit: 100



View Profile WWW
September 06, 2011, 09:35:47 PM
 #194

I'm not sure why you are defending CH/RS so much on these forums. It just seems like you are his minion or something OR that you get some benefit for doing it.

Did ArtForz hurt a lot of people's coins? Yes. But those were speculators speculating on a risky currency. They knew what they got into or should have known. The fact that it's risky is because the new currency is untested. With the code CH/RS put into it, you can't be sure it's not full of bugs. And they obviously had no idea that CH/RS will self destruct like that. So live and learn.

I actually believe that what ArtForz did was best for SolidCoin. It showed what kind of person CH/RS really is. It made a lot of people wise up and sell their SolidCoins before it was too late. If ArtForz did not expose SolidCoin's vulnerability *and* CH/RS's real self, SolidCoin's would have lasted a bit longer. More people would have bought in and be invested in this coin. All this (vulnerabilities and CH/RS's incompetence in fixing issues and his behavior) will inevitably come out at a later point. And when that happens, more people would have been hurt.

I am defending Solidcoin as a viable alternative.  Public statements made by Coinhunter should not have been made, I don't denounce that, to me it's a non-issue because he IS doing good work outside of that and that is all I care about.  MORE-SO are the dumb asses out here who vilified him even before they had reason to (Smoothie-in-his-ass, wolftaurd, King Douchebag, the whole lot of them)... this is the part that makes me sick you guys are letting those guys run the show out here when you should be just as often letting them know that they are fucked up one side and down the other as well.

And here's the kicker and the ultimate point I am trying to make, I don't care if Artforz "revealed his real self", what Artforz did was f'ing dispicable ... he should be banned from these forums at a very minimum and Gavin as the de-facto head around here should denounce his actions.  Above all else I'll shut up completely as soon as I see as many posts out here complaining about Coinhunter also complaining about Artforz and calling the scum sucker to be banned from these forums and as much public association with Bitcoin as possible.  He hurt innocent bystanders directly, it wasn't just a bug gone wrong it would have been criminal if cryptocurrency was in fact legally recognized currency, for that at least and unfortunately we probably can't bring him up on charges.  And to note... I didn't loose anything because of the scum sucker, but he did something far worse than Coinhunter ever did.

Dude blame CoinHunter for what ArtForz did to solidcoins. ArtForz went to him and told him there is a problem, and that he needs to fix it. and he basically told ArtForz to fck himself.

Coinhunter could have avoided the whole thing with a simple statement "Thanks for pointing this out, I will fix it as soon as possible, please keep this confidential until after the fix is made". but noooooooo he wanted to be his douchy self.... "I know what I am doing biaaatch"

Checkout the most amazing affiliate program http://onehourwin.com/
BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 06, 2011, 09:37:38 PM
 #195

Dude blame CoinHunter for what ArtForz did to solidcoins. ArtForz went to him and told him there is a problem, and that he needs to fix it. and he basically told ArtForz to fck himself.

Coinhunter could have avoided the whole thing with a simple statement "Thanks for pointing this out, I will fix it as soon as possible, please keep this confidential until after the fix is made". but noooooooo he wanted to be his douchy self.... "I know what I am doing biaaatch"

Never forget, Art still did a dick move.

smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 09:38:50 PM
 #196

Please do us all a favor and take your crying elsewhere. Thank you very much.

Not crying just trying to ensure people see how stupid the douche trio is in this mess ... Artforz, smoothie and wolftaurd that is ... I'm not even defending Coinhunter per se.  But to leave him to follow you lot is like overthrowing Richard the Lionheart (not a very well liked guy but he was a leader) and following the f'ing court jesters.

What exactly did I do? Did i speak my mind and piss you off?

Sorry free speech is allowed here.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 09:39:44 PM
 #197

Never forget, Art still did a dick move.

<Art> Hey, I found a problem with SolidCoin.
<CH> You must think you're so cool.
<Art> I found a problem in your genius bitcoin-killing code so yeah.
<CH> You're full of shit. And I still got a bigger log than you.
<Art> *typetypetype* You do now.

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 09:43:07 PM
 #198

I'm not sure why you are defending CH/RS so much on these forums. It just seems like you are his minion or something OR that you get some benefit for doing it.

Did ArtForz hurt a lot of people's coins? Yes. But those were speculators speculating on a risky currency. They knew what they got into or should have known. The fact that it's risky is because the new currency is untested. With the code CH/RS put into it, you can't be sure it's not full of bugs. And they obviously had no idea that CH/RS will self destruct like that. So live and learn.

I actually believe that what ArtForz did was best for SolidCoin. It showed what kind of person CH/RS really is. It made a lot of people wise up and sell their SolidCoins before it was too late. If ArtForz did not expose SolidCoin's vulnerability *and* CH/RS's real self, SolidCoin's would have lasted a bit longer. More people would have bought in and be invested in this coin. All this (vulnerabilities and CH/RS's incompetence in fixing issues and his behavior) will inevitably come out at a later point. And when that happens, more people would have been hurt.

I am defending Solidcoin as a viable alternative.  Public statements made by Coinhunter should not have been made, I don't denounce that, to me it's a non-issue because he IS doing good work outside of that and that is all I care about.  MORE-SO are the dumb asses out here who vilified him even before they had reason to (Smoothie-in-his-ass, wolftaurd, King Douchebag, the whole lot of them)... this is the part that makes me sick you guys are letting those guys run the show out here when you should be just as often letting them know that they are fucked up one side and down the other as well.

And here's the kicker and the ultimate point I am trying to make, I don't care if Artforz "revealed his real self", what Artforz did was f'ing dispicable ... he should be banned from these forums at a very minimum and Gavin as the de-facto head around here should denounce his actions.  Above all else I'll shut up completely as soon as I see as many posts out here complaining about Coinhunter also complaining about Artforz and calling the scum sucker to be banned from these forums and as much public association with Bitcoin as possible.  He hurt innocent bystanders directly, it wasn't just a bug gone wrong it would have been criminal if cryptocurrency was in fact legally recognized currency, for that at least and unfortunately we probably can't bring him up on charges.  And to note... I didn't loose anything because of the scum sucker, but he did something far worse than Coinhunter ever did.

So please explain to me how I "vilified" him? The guy was a dick from the start. Any comments that disagreed with him or sometimes even agreed with him he would talk down to and belittle.

Once again please take your whining and crying to your precious solidcointalk.org site. We don't need anymore babies on this forum that can't handle hearing the truth.

thanks for coming.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
Mousepotato
Hero Member
*****
Offline Offline

Activity: 896
Merit: 1000


Seal Cub Clubbing Club


View Profile
September 06, 2011, 09:49:28 PM
 #199

My only question is: With the real possibility of a viable open-source SC client with good peeps helping the dev movement, should we hang on to our Solidcoins or dump them like Smoothie advised?

Mousepotato
smoothie
Legendary
*
Offline Offline

Activity: 2492
Merit: 1473


LEALANA Bitcoin Grim Reaper


View Profile
September 06, 2011, 09:52:13 PM
 #200

My only question is: With the real possibility of a viable open-source SC client with good peeps helping the dev movement, should we hang on to our Solidcoins or dump them like Smoothie advised?

I've already unloaded all of mine. I am sure there will be alternative block chains in the near future that have much more to offer than solidcoin has.

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

            ,╓p@@███████@╗╖,           
        ,p████████████████████N,       
      d█████████████████████████b     
    d██████████████████████████████æ   
  ,████²█████████████████████████████, 
 ,█████  ╙████████████████████╨  █████y
 ██████    `████████████████`    ██████
║██████       Ñ███████████`      ███████
███████         ╩██████Ñ         ███████
███████    ▐▄     ²██╩     a▌    ███████
╢██████    ▐▓█▄          ▄█▓▌    ███████
 ██████    ▐▓▓▓▓▌,     ▄█▓▓▓▌    ██████─
           ▐▓▓▓▓▓▓█,,▄▓▓▓▓▓▓▌          
           ▐▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▌          
    ▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓─  
     ²▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓╩    
        ▀▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▀       
           ²▀▀▓▓▓▓▓▓▓▓▓▓▓▓▀▀`          
                   ²²²                 
███████████████████████████████████████

. ★☆ WWW.LEALANA.COM        My PGP fingerprint is A764D833.                  History of Monero development Visualization ★☆ .
LEALANA BITCOIN GRIM REAPER SILVER COINS.
 
wolftaur
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
September 06, 2011, 09:54:10 PM
 #201

My only question is: With the real possibility of a viable open-source SC client with good peeps helping the dev movement, should we hang on to our Solidcoins or dump them like Smoothie advised?

I've already unloaded all of mine. I am sure there will be alternative block chains in the near future that have much more to offer than solidcoin has.

But they'll have smaller logs. Smiley

"MOOOOOOOM! SOME MYTHICAL WOLFBEAST GUY IS MAKING FUN OF ME ON THE INTERNET!!!!"
ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 06, 2011, 09:55:21 PM
 #202

Never forget, Art still did a dick move.
Not disagreeing with you here. Though I do regret not noticing the massive txdb journal growth earlier, or I would have stopped the "attack" a lot sooner than I did.

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
coblee
Donator
Legendary
*
Offline Offline

Activity: 1653
Merit: 1286


Creator of Litecoin. Cryptocurrency enthusiast.


View Profile
September 06, 2011, 09:57:06 PM
 #203

The unintended consequences of king douche bag's attack is though that he hurt a lot of people beyond Coinhunter even.  Thats where the ass hat looses 100% respect and credibility.  He also apparently know about other underlying bugs in the cryptocurrency systems which inadvertently killed peoples nodes (also from Bitcoin).  Yet the scum out here champions him as some great Hero of douche bag ville....  says a lot about this community.....

I'm not sure why you are defending CH/RS so much on these forums. It just seems like you are his minion or something OR that you get some benefit for doing it.

Did ArtForz hurt a lot of people's coins? Yes. But those were speculators speculating on a risky currency. They knew what they got into or should have known. The fact that it's risky is because the new currency is untested. With the code CH/RS put into it, you can't be sure it's not full of bugs. And they obviously had no idea that CH/RS will self destruct like that. So live and learn.

I actually believe that what ArtForz did was best for SolidCoin. It showed what kind of person CH/RS really is. It made a lot of people wise up and sell their SolidCoins before it was too late. If ArtForz did not expose SolidCoin's vulnerability *and* CH/RS's real self, SolidCoin's would have lasted a bit longer. More people would have bought in and be invested in this coin. All this (vulnerabilities and CH/RS's incompetence in fixing issues and his behavior) will inevitably come out at a later point. And when that happens, more people would have been hurt.

I actually take that back about ArtForz hurting a lot of people. He really didn't. His attack was pretty mild. It slowed down processing of blocks. It yielded an unintended side effect (that ArtForz was not previously aware of) of causing the transaction logs to grow too big. This caused some nodes to crash if they were running low on disk space. What hurt solidcoin more was CH/RS's half-ass buggy fix that did more damage than it fixed AND his other half-ass fix to fix his first fix. And according to ArtForz, the latest fix introduced yet another vulnerability of the blockchain growing uncontrollably. CH/RS's incompetence is hurting solidcoin more than ArtForz's attack.

And in the end, none of this hurt the price of solidcoins much at all. So no one was materially hurt by any of this until CH/RS decided to change the open source license. Was that a revenge move? This pissed off doublec enough to shutdown the largest exchange and it pissed off eleuthria enough to shutdown the largest pool. THAT was what caused the price to plummet, which hurt people. So I would argue that CH/RS hurt his own solidcoin supporters by making this dumbass move. Maybe we should investigate if he sold all his coins before the move, and bought them back cheap!

ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 06, 2011, 10:01:23 PM
 #204

I dont know of any recent fix making the blockchain growing uncontrollably.
The only issue I am currently aware of is that under certain circumstances the disabling of orphan block storage can possibly cause nodes to never catch up to the current head of the chain and under similar circumstances can also cause them to spam 1000s of "GetBlocks" requests while downloading the chain.

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 06, 2011, 10:10:39 PM
 #205

This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin


diff solidcoin1.03 soldcoin1.04:
Code:
$ diff solidcoin-source-103/src soldcoin-source-104/src
Les sous-répertoires solidcoin-source-103/src/cryptopp et soldcoin-source-104/src/cryptopp sont identiques.
diff solidcoin-source-103/src/init.cpp soldcoin-source-104/src/init.cpp
323c323
<             HWND hwndPrev = FindWindowA("wxWindowNR", "SolidCoin 1.03");
---
>             HWND hwndPrev = FindWindowA("wxWindowNR", "SoldCoin 1.04");
...

I like the new name "soldcoin". It's probably just a typo but so what.

BTW, lots of people are asking (in freenode ) for the windows version. I have no Windows so I can not help them.
Can someone please help those good people, who do not like the evil mad monkey license, and push the compiled exe's to git or something.

One more thing. I started a #solidcoin-fos channel in freenode for chitchat so this forum thread can have more useful content and less of that 0 value blaa blaa blaa Smiley

Edit: added the missing 'i'




While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
BitcoinPorn
Hero Member
*****
Offline Offline

Activity: 630
Merit: 500


Posts: 69


View Profile WWW
September 07, 2011, 12:58:05 AM
 #206

they should cast you out from here.
lol, what in the hell, you have to be a thespian or something.

I'll give Art one thing, he admits his dick moves so far.

sd
Hero Member
*****
Offline Offline

Activity: 730
Merit: 500



View Profile
September 07, 2011, 07:01:11 AM
 #207

Shouldn't have done it in the first place, you didn't get vengeance against Coinhunter even, you took it out on the end users and that is worse than EVERYTHING you all have accused Coinhunter of.... If you were a decent human being you should be ashamed of yourself, and if the rest of these clowns cared about this technology (Cryptocurrency in general) they should cast you out from here.

The thing is someone was going to do it sooner or later, it was only a matter of time. In the real world things get attacked all the time. You are better knowing about it sooner so you can fix it.

At least this clearly demonstrated that SolidCoin was technically broken and by extension CoinHunters claims to have made a better BitCoin were false.
phelix
Legendary
*
Offline Offline

Activity: 1708
Merit: 1019



View Profile
September 07, 2011, 08:14:16 AM
 #208

+1 for ArtForz' actions and making them public

it was all according to the codex  Wink

Anybody attacking him has not thought about how a bad guy would have done it. ArtForz did a service and a favor to everybody associated with solidcoin and whole the cryptocurrency community.
dishwara
Legendary
*
Offline Offline

Activity: 1855
Merit: 1016



View Profile
September 07, 2011, 08:14:46 AM
 #209

Never forget, Art still did a dick move.
Not disagreeing with you here. Though I do regret not noticing the massive txdb journal growth earlier, or I would have stopped the "attack" a lot sooner than I did.

Shouldn't have done it in the first place, you didn't get vengeance against Coinhunter even, you took it out on the end users and that is worse than EVERYTHING you all have accused Coinhunter of.... If you were a decent human being you should be ashamed of yourself, and if the rest of these clowns cared about this technology (Cryptocurrency in general) they should cast you out from here.

If instead of ART someone to GAIN PROFIT had done what ART did then who can u blame?
ART did huge that too ONLY ONE tx that clearly showed the bug.
What if some one came to know this & secretly did some 100 tx & gained profit & totally brought down all the crytocurrencies, then no one will be here scolding each other. Most will be crying for loosing all their coins & some even life.

ART did one thing which showed a vulnerability in the client.
A REAL DEVELOPER MUST take whatever feedback from his client users & if some negative feedback comes then he MUST solve it, instead of calling others fuck off.
If no one gave feedback abt how fucking shit was Windows Vista & M$ never took feedback & scold, insulted those who gave feedback, then Windows 7 wouldn't be released at all.
DEVELOPERS job is to DEVELOP & give error free software. Not to scold who gives feedback.
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 07, 2011, 08:07:39 PM
 #210

Code:
[quote author=EskimoBob link=topic=41345.msg510468#msg510468 date=1315347039]
[quote author=jackjack link=topic=41345.msg504115#msg504115 date=1315157431]
This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin
...
[/quote]

I like the new name "soldcoin". It's probably just a typo but so what.

BTW, lots of people are asking (in freenode ) for the windows version. I have no Windows so I can not help them.
Can someone please help those good people, who do not like the evil mad monkey license, and push the compiled exe's to git or something.

One more thing. I started a #solidcoin-fos channel in freenode for chitchat so this forum thread can have more useful content and less of that 0 value blaa blaa blaa Smiley

Edit: added the missing 'i'
[/quote]


Any news on windows version?  I have no Windows so I can not help those poor souls Smiley

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
simonk83
Hero Member
*****
Offline Offline

Activity: 798
Merit: 1000


View Profile
September 08, 2011, 07:32:47 AM
 #211

Little bump for you Wink
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 08, 2011, 11:31:16 AM
 #212

1.04 crashes every time if: select address book> select address> edit> add name> OK > crash and burn
After restart, account has the added comment.
 

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
Spacy
Full Member
***
Offline Offline

Activity: 168
Merit: 100


View Profile
September 08, 2011, 04:46:35 PM
 #213

1.04 crashes every time if: select address book> select address> edit> add name> OK > crash and burn
After restart, account has the added comment. 

One bug regarding the address book is already fixed in the code, so this should probably fine in the next release.
Kolbas
Sr. Member
****
Offline Offline

Activity: 342
Merit: 250


View Profile
September 08, 2011, 05:13:38 PM
 #214

Does your client download those huge blocks very slow too? Can it be cured somehow?
johnj
Full Member
***
Offline Offline

Activity: 154
Merit: 100


View Profile
September 08, 2011, 05:45:34 PM
 #215

Does your client download those huge blocks very slow too? Can it be cured somehow?

Nope.  Once you download them and close the client it'll go back to a more 'managable' size, but that first time downloading it is going to be multiple gb of space.

1AeW7QK59HvEJwiyMztFH1ubWPSLLKx5ym
TradeHill Referral TH-R120549
ArtForz
Sr. Member
****
Offline Offline

Activity: 406
Merit: 257


View Profile
September 08, 2011, 05:49:15 PM
 #216

The slow processing? Can't be fixed for now (not unless you pull in some rather... experimental... bitcoin changes).
The txindex journal bloat? https://github.com/bitcoin/bitcoin/pull/491

bitcoin: 1Fb77Xq5ePFER8GtKRn2KDbDTVpJKfKmpz
i0coin: jNdvyvd6v6gV3kVJLD7HsB5ZwHyHwAkfdw
dserrano5
Legendary
*
Offline Offline

Activity: 1974
Merit: 1029



View Profile
September 08, 2011, 09:57:52 PM
 #217

Does your client download those huge blocks very slow too? Can it be cured somehow?

Oh, the *downloading* is as fast as everything else Grin. It's the processing what takes its time. It's worth to keep a backup of blk*.dat!
CoinHunter
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250



View Profile
September 09, 2011, 06:39:25 AM
 #218

I've created a thread on the SolidCoin forum that you "open source" client people may want to vote "no" on .

http://solidcointalk.org/topic/186-do-you-want-realsolid-to-be-lead-developer/

Try SolidCoin or talk with other SolidCoin supporters here SolidCoin Forums
makomk
Hero Member
*****
Offline Offline

Activity: 686
Merit: 564


View Profile
September 09, 2011, 02:11:07 PM
 #219

The slow processing? Can't be fixed for now (not unless you pull in some rather... experimental... bitcoin changes).
The txindex journal bloat? https://github.com/bitcoin/bitcoin/pull/491
Yep. I'd do a build with that for Windows and Linux using my new-found gitian powers, but RealSolid monkeyed around with the build process a lot and it looks like fixing gitian support again would be quite hard.

Quad XC6SLX150 Board: 860 MHash/s or so.
SIGS ABOUT BUTTERFLY LABS ARE PAID ADS
dayfall
Sr. Member
****
Offline Offline

Activity: 312
Merit: 250



View Profile
September 12, 2011, 01:50:59 AM
 #220

I've created a thread on the SolidCoin forum that you "open source" client people may want to vote "no" on .

Why not put the poll here?
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 12, 2011, 07:40:49 AM
 #221

I've created a thread on the SolidCoin forum that you "open source" client people may want to vote "no" on .

Why not put the poll here?


Let's have this poll in a neutral site: Please vote here: Do you want RealSolid to be lead developer

Have fun and don't be a cheating asshole! Vote only once. Ego's depend on it!

While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
EskimoBob
Legendary
*
Offline Offline

Activity: 910
Merit: 1000


Quality Printing Services by Federal Reserve Bank


View Profile
September 14, 2011, 10:28:17 AM
 #222

This fork uses SolidCoin 1.03 and fixes all the recent problems in the code
Here's Soldcoin (SLC) 1.04:
https://github.com/jackjack-jj/soldcoin


JackJack, can you use this fix for solidcoin?

The timetraveller eviction fix can be trivially copypasted from Geist Geld git.



While reading what I wrote, use the most friendliest and relaxing voice in your head.
BTW, Things in BTC bubble universes are getting ugly....
penix
Newbie
*
Offline Offline

Activity: 22
Merit: 0



View Profile
October 06, 2011, 11:17:48 PM
 #223

I suggest "Solidcoin v3.0" as the name for the project.

Is this project continuing, or is it dead in the water?

Bitcoin Oz
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


Wat


View Profile WWW
February 15, 2012, 07:10:43 AM
 #224

I opened an old solidcoin client te other day. After 1 month it still hasnt downloaded the block chain. Fail.

m3ta
Sr. Member
****
Offline Offline

Activity: 435
Merit: 250



View Profile WWW
February 17, 2012, 08:02:40 PM
 #225

I opened an old solidcoin client te other day. After 1 month it still hasnt downloaded the block chain. Fail.

Not having a functioning client won't effect your profitabilty with Solidcoin in the slightest!  Grin Grin Grin

~BCX~

Elementary school bit you hard.

http://grammar.quickanddirtytips.com/affect-versus-effect.aspx

Why the frell so many retards spell "ect" as an abbreviation of "Et Cetera"? "ETC", DAMMIT! http://en.wikipedia.org/wiki/Et_cetera

Host:/# rm -rf /var/forum/trolls
Bitcoin Oz
Hero Member
*****
Offline Offline

Activity: 686
Merit: 500


Wat


View Profile WWW
February 22, 2012, 08:06:34 AM
 #226

I opened an old solidcoin client te other day. After 1 month it still hasnt downloaded the block chain. Fail.

Not having a functioning client won't effect your profitabilty with Solidcoin in the slightest!  Grin Grin Grin

~BCX~


I think the reason theres no Mac client is because you work there lol.







Elementary school bit you hard.

http://grammar.quickanddirtytips.com/affect-versus-effect.aspx

LOL, the desperation of the Solidcoin sockies is amusing at best. FYI English isn't my primary language moron. 哈 哈  Grin Grin Grin

Tomatocage
Legendary
*
Offline Offline

Activity: 1554
Merit: 1222

brb keeping up with the Kardashians


View Profile
February 22, 2012, 08:44:43 PM
 #227

So is there any further development being done with this?  I liked the original SolidCoin and wouldn't mind seeing it stage a comeback.

Recommended Exchanges: Binance.com | CelsiusNetwork
GPG ID: 4880D85C | 1% Escrow | 8% IPO/ICO Escrow services Temporarily Closed | Bitcointalk is the ONLY place where I use this name (No Skype/IRC/YIM/AIM/etc) | 13CsmTqGNwvFXb7tD9yFvJcEYCDTB8wQTS | Beware of these SCAM sites! | *Sponsored Link
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 [All]
  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!