Bitcoin Forum
May 08, 2024, 04:31:51 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 [6] 7 8 »
101  Bitcoin / Development & Technical Discussion / Opcodes and transactions on: March 24, 2013, 05:22:35 PM
Hi all
I know the answer is somewhere but I can't find it, and the search function didn't really help
I had to leave for about a year and I remember that back then only standard transactions were spread through the nodes
The question is simple, did it changed?
102  Bitcoin / Bitcoin Technical Support / Blockchain taking ages to be downloaded on: March 22, 2013, 04:57:36 PM
Hi,
It's been 2 days that Bitcoin is downloading the blockchain (from block 1)
I don't think it's normal... Any idea?

103  Bitcoin / Development & Technical Discussion / Keys / Addresses on: March 20, 2013, 06:03:05 PM
I've encountered a problem, and it's kinda difficult to investigate more as I still have 40000+ blocks to download.

I made a new Bitcoin wallet (with bitcoin 0.8.1, linux). Obviously it has default keys. Let's take the main one.
Code:
 {
            "addr": "1Co8KFDHnwyuCxfyBWPK1ifRjGiR7AeXDC",
            "hexsec": "3d423fb2f8b7af14e590230d87ec9067cba3ad29261f829c4f2476ade4278aa0",
            "label": "",
            "privkey": "3081d30201010420543d423fb2f8b7af14e590230d87ec9067cba3ad29261f829c4f2476ade4278aa08185308182020101302c06072a8648ce3d0101022100fffffffffffffffffffffffffffffffffffffffffffffffffffffffefffffc2f300604010004010704210279be667ef9dcbbac55a06295ce870b07029bfcdb2dce28d959f2815b16f81798022100fffffffffffffffffffffffffffffffebaaedce6af48a03bbfd25e8cd0364141020101a1240322000302519ca3be493a26d62e96a814388b441bf972f6cf16f07ba49b993f3a12db69",
            "pubkey": "0302519ca3be493a26d62e96a814388b441bf972f6cf16f07ba49b993f3a12db69",
            "sec": "5JHGMYGpfoD7HK3jSNrKgRry9yRZGEGJEXBk6w3KPfAdjQRyawb"
        }
This is a dump from Joric's pywallet. 1Co8KFDHnwyuCxfyBWPK1ifRjGiR7AeXDC is what Bitcoin software shows.

The thing is, when I use pywallet (Joric's one, which is up-to-date) to import the private key (here as hexsec or sec) into another wallet, the message it returns to me mentions the address 1MUVkGv8TWjvdJ87VMGoNyhG3NLYE87WQT, and not 1Co8KFDHnwyuCxfyBWPK1ifRjGiR7AeXDC.
If I had access I would have transfered 1 mBTC to each address and tried to retrieve both to see what would happened...

So in the mean time, can anyone tell me what I can do to check where is the error? And can someone check to which address the private key 3d423f... corresponds?
Thanks for any help
104  Bitcoin / Development & Technical Discussion / Big changes since 0.3.23 on: March 20, 2013, 12:51:46 AM
Hi there,

I had to leave the Bitcoin community for a long time, since 0.3.23
As a dev I'd like other dev(s) to tell me what big changes occured since then
Of course, I'm looking into that and I'm not just waiting to be spoon-fed but that would help a lot, just to be sure I'm not missing a key point before developping again.
Even just the name of the feature like "wallet encryption" would help.

Thanks in advance!
105  Alternate cryptocurrencies / Altcoin Discussion / [ANNOUNCE] New Solidcoin Client Fully Open-Source! on: September 04, 2011, 05:30:31 PM
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
<
106  Alternate cryptocurrencies / Altcoin Discussion / Howto: create a failed Bitcoin fork on: September 04, 2011, 03:38:48 PM
1. Pre-mine coins
2. Be uber arrogant
3. Say you are way better at coding than the entire Bitcoin dev team
4. Say your new fork will kill Bitcoin because it fixes several Bitcoin bugs
5. Spread some good Bitcoin FUD


Winrar so far:
  • Ixcoin
  • Solidcoin
107  Other / Off-topic / Athiest pool on: August 30, 2011, 02:37:50 PM
It seems that the last thread was "beyond out of the bounds for the mining forum", I hope it's not too off-topic

So here we go again including the original typo, who want to mount a pool to put some pastafarian prayers in the blockchain?

May You All Be Touched by his Noodly Appendage

108  Other / Meta / lettucebee on: August 30, 2011, 02:23:30 PM
lettucebee seems to hate gays
That's just unbearable, please ban him
109  Bitcoin / Development & Technical Discussion / Different format for blk*.dat on: August 28, 2011, 03:10:14 PM
As you surely know, Luke-Jr thinks it's intelligent to put prayers in the block chain...
Because of him we now have that with a simple "strings -n 20 blk0001.dat":
Code:
Eligius/Benedictus Deus. Benedictum Nomen Sanctum eius.
Eligius/Benedictus Deus. Benedictum Nomen Sanctum eius.
***************************************************
Benedictus Iesus Christus, verus Deus et verus homo.
Benedictum Nomen Iesu.
   I LIKE TURTLES  
Benedictum Cor eius sacratissimum.
Benedictus Sanguis eius pretiosissimus.
Benedictus Iesus in sanctissimo altaris Sacramento.
Benedictus Sanctus Spiritus, Paraclitus.
C-C-C-COMBO BREAKER
Eligius/Benedictus Deus. Benedictum Nomen Sanctum eius.
Eligius/Benedictus Deus. Benedictum Nomen Sanctum eius.
***************************************************
Benedictus Iesus Christus, verus Deus et verus homo.
Benedictum Nomen Iesu.
   I LIKE TURTLES  
Benedictum Cor eius sacratissimum.
Benedictus Sanguis eius pretiosissimus.
Benedictus Iesus in sanctissimo altaris Sacramento.
Benedictus Sanctus Spiritus, Paraclitus.
C-C-C-COMBO BREAKER
Benedictus Sanctus Spiritus, Paraclitus.
Benedicta excelsa Mater Dei, Maria sanctissima.
Benedicta sancta eius et immaculata Conceptio.
Benedicta sancta eius et immaculata Conceptio.
Benedicta eius gloriosa Assumptio.
Benedictum nomen Mariae, Virginis et Matris.
Benedictum nomen Mariae, Virginis et Matris.
Benedictus sanctus Ioseph, eius castissimus Sponsus.
Benedictus Deus in Angelis suis, et in Sanctis suis. Amen.
In nomine Patris et Filii et Spiritus Sancti. Amen.
O my God, I am heartily sorry for having offended Thee and I detest all my sins...
O my God, I am heartily sorry for having offended Thee and I detest all my sins...
Eye'm the strongest!
...because of Thy just punishments, but most of all because they offend Thee, ...
...my God, who art all good and deserving of all my love.
I firmly resolve, with the help of Thy grace, to sin no more...
I firmly resolve, with the help of Thy grace, to sin no more...
...and avoid the near occasions of sin. Amen.
O my God! I firmly believe that Thou art one God in three Divine persons, ...
O my God! I firmly believe that Thou art one God in three Divine persons, ...
...Father, Son, and Holy Ghost; I believe that Thy Divine Son became man, ...
...and died for our sins, and that he will come to, judge the living and the dead.
I believe these and all the truths which the Holy Catholic Church teaches, ...
...because Thou hast revealed them, who canst neither deceive nor be deceived.
O my God! relying on Thy infinite goodness and promises, ...
...I hope to obtain pardon of my sins, the help of Thy grace, ...
...and life everlasting, through the merits of Jesus Christ, my Lord and Redeemer.
...and life everlasting, through the merits of Jesus Christ, my Lord and Redeemer.
O my God! I love Thee above all things, with my whole heart and soul, ...
...because Thou art all-good and worthy of all love.
...because Thou art all-good and worthy of all love.
Yukkuri Shiteitte ne
I love my neighbor as myself for the love of Thee.
I forgive all who have injured me, and ask pardon of all whom I have injured.
I forgive all who have injured me, and ask pardon of all whom I have injured.
I forgive all who have injured me, and ask pardon of all whom I have injured.
O my Jesus, forgive us our sins, save us from the fires of Hell, ...
...lead all souls to Heaven, especially those in most need of Thy mercy.
I confess to Almighty God, to blessed Mary ever Virgin, ...
... to blessed Michael the Archangel, to blessed John the Baptist, ...
... to the holy Apostles Peter and Paul, and to all the Saints, ...
... that I have sinned exceedingly, in thought, word, and deed, ...
... through my fault, through my fault, through my most grievous fault.
Therefore I beseech blessed Mary ever Virgin, blessed Michael the Archangel, ...
... blessed John the Baptist, the holy Apostles Peter and Paul, ...
... and all the Saints to pray to the Lord our God for me. Amen.
St. Michael the Archangel, defend us in battle; be our safeguard against ...
St. Michael the Archangel, defend us in battle; be our safeguard against ...
... the wickedness and snares of the Devil. May God rebuke him, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... by the power of God, cast into Hell, Satan and all the other evil spirits, ...
... who wander throughout the world, seeking the ruin of souls. Amen.
Angel of God, my guardian dear, to whom His love commits me here, ...
... ever this night be at my side, to light and guard, to rule and guide. Amen.
Ave Maria, gratia plena, Dominus tecum. Benedicta tu in mulieribus, ...
... et benedictus fructus ventris tui, Iesus. Sancta Maria, Mater Dei, ...
... et benedictus fructus ventris tui, Iesus. Sancta Maria, Mater Dei, ...
... et benedictus fructus ventris tui, Iesus. Sancta Maria, Mater Dei, ...
... ora pro nobis peccatoribus, nunc, et in hora mortis nostrae. Amen.
Benedictus Sanctus Spiritus, Paraclitus.
Benedicta excelsa Mater Dei, Maria sanctissima.
Benedicta sancta eius et immaculata Conceptio.
Benedicta sancta eius et immaculata Conceptio.
Benedicta eius gloriosa Assumptio.
Benedictum nomen Mariae, Virginis et Matris.
Benedictum nomen Mariae, Virginis et Matris.
Benedictus sanctus Ioseph, eius castissimus Sponsus.
Benedictus Deus in Angelis suis, et in Sanctis suis. Amen.
In nomine Patris et Filii et Spiritus Sancti. Amen.
O my God, I am heartily sorry for having offended Thee and I detest all my sins...
O my God, I am heartily sorry for having offended Thee and I detest all my sins...
Eye'm the strongest!
...because of Thy just punishments, but most of all because they offend Thee, ...
...my God, who art all good and deserving of all my love.
I firmly resolve, with the help of Thy grace, to sin no more...
I firmly resolve, with the help of Thy grace, to sin no more...
...and avoid the near occasions of sin. Amen.
O my God! I firmly believe that Thou art one God in three Divine persons, ...
O my God! I firmly believe that Thou art one God in three Divine persons, ...
...Father, Son, and Holy Ghost; I believe that Thy Divine Son became man, ...
...and died for our sins, and that he will come to, judge the living and the dead.
I believe these and all the truths which the Holy Catholic Church teaches, ...
...because Thou hast revealed them, who canst neither deceive nor be deceived.
O my God! relying on Thy infinite goodness and promises, ...
...I hope to obtain pardon of my sins, the help of Thy grace, ...
...and life everlasting, through the merits of Jesus Christ, my Lord and Redeemer.
...and life everlasting, through the merits of Jesus Christ, my Lord and Redeemer.
O my God! I love Thee above all things, with my whole heart and soul, ...
...because Thou art all-good and worthy of all love.
...because Thou art all-good and worthy of all love.
Yukkuri Shiteitte ne
I love my neighbor as myself for the love of Thee.
I forgive all who have injured me, and ask pardon of all whom I have injured.
I forgive all who have injured me, and ask pardon of all whom I have injured.
I forgive all who have injured me, and ask pardon of all whom I have injured.
O my Jesus, forgive us our sins, save us from the fires of Hell, ...
...lead all souls to Heaven, especially those in most need of Thy mercy.
I confess to Almighty God, to blessed Mary ever Virgin, ...
... to blessed Michael the Archangel, to blessed John the Baptist, ...
... to the holy Apostles Peter and Paul, and to all the Saints, ...
... that I have sinned exceedingly, in thought, word, and deed, ...
... through my fault, through my fault, through my most grievous fault.
Therefore I beseech blessed Mary ever Virgin, blessed Michael the Archangel, ...
... blessed John the Baptist, the holy Apostles Peter and Paul, ...
... and all the Saints to pray to the Lord our God for me. Amen.
St. Michael the Archangel, defend us in battle; be our safeguard against ...
St. Michael the Archangel, defend us in battle; be our safeguard against ...
... the wickedness and snares of the Devil. May God rebuke him, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... we humbly pray, and do Thou, O Prince of the Heavenly Host, ...
... by the power of God, cast into Hell, Satan and all the other evil spirits, ...
... who wander throughout the world, seeking the ruin of souls. Amen.
Angel of God, my guardian dear, to whom His love commits me here, ...
... ever this night be at my side, to light and guard, to rule and guide. Amen.
Ave Maria, gratia plena, Dominus tecum. Benedicta tu in mulieribus, ...
... et benedictus fructus ventris tui, Iesus. Sancta Maria, Mater Dei, ...
... et benedictus fructus ventris tui, Iesus. Sancta Maria, Mater Dei, ...
... et benedictus fructus ventris tui, Iesus. Sancta Maria, Mater Dei, ...
... ora pro nobis peccatoribus, nunc, et in hora mortis nostrae. Amen.
Salve, Regina, mater misericordiae: vita, dulcedo, et spes nostra, salve.
Ad te clamamus exsules filii Hevae. Ad te suspiramus, gementes et flentes ...
Ad te clamamus exsules filii Hevae. Ad te suspiramus, gementes et flentes ...
... in hac lacrimarum valle. Eia, ergo, advocata nostra, illos tuos ...
... misericordes oculos ad nos converte. Et Iesum, benedictum fructum ...
... ventris tui, nobis post hoc exsilium ostende. O clemens, O pia, ...
... O dulcis Virgo Maria. Ora pro nobis, sancta Dei Genetrix.
kLhLUKE-JR IS A PEDOPHILE! Oh, and god isn't real, sucka. Stop polluting the blockchain with your nonsense.
Ut digni efficiamur promissionibus Christi. Amen.
Pater noster, qui es in caelis, sanctificetur Nomen tuum. Adveniat regnum tuum.
Pater noster, qui es in caelis, sanctificetur Nomen tuum. Adveniat regnum tuum.
Fiat voluntas tua, sicut in caelo et in terra. Panem nostrum quotidianum ...
Salve, Regina, mater misericordiae: vita, dulcedo, et spes nostra, salve.
Ad te clamamus exsules filii Hevae. Ad te suspiramus, gementes et flentes ...
Ad te clamamus exsules filii Hevae. Ad te suspiramus, gementes et flentes ...
... in hac lacrimarum valle. Eia, ergo, advocata nostra, illos tuos ...
... misericordes oculos ad nos converte. Et Iesum, benedictum fructum ...
... ventris tui, nobis post hoc exsilium ostende. O clemens, O pia, ...
... O dulcis Virgo Maria. Ora pro nobis, sancta Dei Genetrix.
kLhLUKE-JR IS A PEDOPHILE! Oh, and god isn't real, sucka. Stop polluting the blockchain with your nonsense.
Ut digni efficiamur promissionibus Christi. Amen.
Pater noster, qui es in caelis, sanctificetur Nomen tuum. Adveniat regnum tuum.
Pater noster, qui es in caelis, sanctificetur Nomen tuum. Adveniat regnum tuum.
Fiat voluntas tua, sicut in caelo et in terra. Panem nostrum quotidianum ...
... da nobis hodie, et dimitte nobis debita nostra sicut et nos dimittimus ...
... debitoribus nostris. Et ne nos inducas in tentationem, sed libera nos a malo.
Domine Iesu Christe, Filius Dei, miserere me peccatorem!
Sanae is a good girl
We adore Thee, O Christ, and we bless Thee;
We adore Thee, O Christ, and we bless Thee;
because by Thy holy Cross Thou hast redeemed the world.
May the Holy Trinity be blessed.
Christ conquers! Christ reigns! Christ commands!
O Heart of Jesus, burning with love for us, inflame our hearts with love for Thee.
O Heart of Jesus, burning with love for us, inflame our hearts with love for Thee.
O Heart of Jesus, I place my trust in Thee.
O Heart of Jesus, all for Thee.
O Heart of Jesus, all for Thee.
Most Sacred Heart of Jesus, have mercy on us.
O God, have mercy on me, a sinner.
Teach me to do Thy will, because Thou art my God.
Help me, ERINNNNNN!!
O Lord, increase our faith.
O Lord, save us, we are perishing.
O Lord, increase our faith.
O Lord, save us, we are perishing.
O Lord, increase our faith.
O Lord, save us, we are perishing.
O Lord, increase our faith.
O Lord, save us, we are perishing.
May the Most Blessed Sacrament be praised and adored forever.
Jesus, meek and humble of heart, make my heart like unto thine!
Holy Trinity, one God, have mercy on us!
Gloria Patri, et Filio, et Spiritui Sancto. Sicut erat in principio, ...
... et nunc, et semper, et in saecula saeculorum. Amen.
... et nunc, et semper, et in saecula saeculorum. Amen.


It seems that I'm nearly the only one that such things disturb, so, ok for the prayers
The problem is that:
Code:
LUKE-JR IS A PEDOPHILE! Oh, and god isn't real, sucka. Stop polluting the blockchain with your nonsense.
Which is not only something we will never know if it's true, but also the beginning of a blockchain religious war and part of a tx so not deletable

I don't know what is worse, a religious war or using a format not as simple as raw data...
110  Other / Meta / Rename "Alternate cryptocurrencies" to "Official Solidcoin Forum" on: August 27, 2011, 02:59:38 PM
The reason is clear I believe:
Code:
		[ANNOUNCE] SolidCoin - new and improved block chain. Secure from pools New « 1 2 ... 21 22  All » 	CoinHunter 	424 	10875 	Last post Today at 16:55:57
SolidCoin 1.02 Released « 1 2  All » CoinHunter 25 805 Last post Today at 15:33:03
SolidCoin 1.01 Released « 1 2 3 4 5  All » CoinHunter 82 1822 Last post Today at 10:45:58
SCGuild - SolidCoin Fork of BTC Guild New « 1 2  All » eleuthria 29 1134 Last post Today at 09:31:05
payco.in ===> list your SOLIDCOIN sites HERE Lorna Morgan 1 107 Last post Today at 08:52:18
Solidcoin value UP ----> My Membership Prices Fall Lorna Morgan 18 670 Last post Today at 02:12:53
That Didn't Take Long:SolidCoin Crashes to Near Worthless! New « 1 2 3  All » BitcoinEXpress 55 2214 Last post 21:42:38 le 26/08/2011
What is your opinion on Solidcoin's block generation rate? New JohnDoe 5 251 Last post 21:05:18 le 26/08/2011
SolidCoin assisting the drop in BTC value this week? CoinMan 4 224 Last post 20:40:50 le 26/08/2011
Solidcoin exchange app Conräd 0 96 Last post 20:31:48 le 26/08/2011
SLC passes NMC BCEmporium 9 296 Last post 19:59:40 le 26/08/2011
Mining SolidCoins is now 4 times more profitable than Bitcoins !!! New
111  Economy / Speculation / Bitcoin value about to rise to...over9000.. on: August 23, 2011, 01:37:41 PM
You heard it here first folks...  Wink
112  Bitcoin / Bitcoin Technical Support / Transaction not broadcasted on: August 22, 2011, 08:43:50 PM
Hi,
I have a transaction that's not broadcasted by the client:
Code:
Transaction:
CTransaction(hash=3422e42d76, ver=1, vin.size=2, vout.size=1, nLockTime=0)
   CTxIn(COutPoint(edd0e7d842, 1), scriptSig=304502200e740554da7e0f50)
   CTxIn(COutPoint(fc7c6a7fb9, 1), scriptSig=3045022047a8faca47a9e787)
   CTxOut(nValue=4.00950000, scriptPubKey=OP_DUP OP_HASH160 ec7523399bff)
Inputs:
CTransaction(hash=edd0e7d842, ver=1, vin.size=1, vout.size=2, nLockTime=0)
   CTxIn(COutPoint(e3376d1527, 0), scriptSig=3044022020d5a19bd9135628)
   CTxOut(nValue=95.33200000, scriptPubKey=OP_DUP OP_HASH160 76747e7f607e)
   CTxOut(nValue=2.00000000, scriptPubKey=OP_DUP OP_HASH160 ec7523399bff)
   2532 confirmations, IsMine=true
CTransaction(hash=fc7c6a7fb9, ver=1, vin.size=1, vout.size=2, nLockTime=0)
   CTxIn(COutPoint(be12ace2ff, 0), scriptSig=3045022079e3b6551817872c)
   CTxOut(nValue=40.37000000, scriptPubKey=OP_DUP OP_HASH160 5ad2ba0a86c1)
   CTxOut(nValue=2.01000000, scriptPubKey=OP_DUP OP_HASH160 ec7523399bff)
   1937 confirmations, IsMine=true

As you can see, the inputs are old and not tiny
I even put a 0.0005 fee to be sure there's a problem
When I run the client, I see that this tx is accepted to the pool

113  Alternate cryptocurrencies / Altcoin Discussion / [2BTC BOUNTY] New useless scammy blockchains on: August 21, 2011, 12:40:24 PM
We had ixcoin, now solidcoin: https://bitcointalk.org/index.php?topic=38453.msg0#new
Will this stop? Unlikely
How can we stop that?

I pledge 1BTC for a proved successful double-spend attack on solidcoin in the next 3 days
Anybody with me?
114  Bitcoin / Bitcoin Technical Support / Transaction color on: August 20, 2011, 04:31:36 PM
Hi,
I noticed there are 3 different transaction colors in the client, what do they exactly mean?


The first 2 tx's are 0/unconfirmed, why one is light grey and the other dark grey?

As for the confirmed tx's, I thought that black ones (4th line) corresponded to the more recent tx's
But the 3rd line has 250 confirmations, the 4th, 500 and the 5th, 650
115  Bitcoin / Bitcoin Discussion / Bitcoincharts IP on: August 20, 2011, 04:19:20 PM
Hi,
I'm looking for the IP of the bitcoincharts' node but can't find it anywhere
116  Bitcoin / Bitcoin Technical Support / [GUIDE] Recover your deleted keys on: August 19, 2011, 01:43:22 AM
It works for sure on Linux (surely OSX too), Windows is still untested

  • Download Pywallet. You only need to install Python 2.7. If you encounter some problems installing Python, post in pywallet thread, someone will answer you quickly
  • Open a console (Windows-R then "cmd" then Enter on windows)
  • Run:
Code:
cd 'the directory where you downloaded pywallet'
  • Assuming that:
    • The device you want to read is /dev/sda3
    • The size of /dev/sda3 is 30.1Gio
    • You want pywallet to write the new wallet containing the found keys in /home/jackjack/recovered_wallets
  • Run (you may have to use sudo to read devices):
Code:
./pywallet.py --recover --recov_size 30.1Gio --recov_device /dev/sda3 --recov_outputdir /home/jackjack/recovered_wallets
  • Wait about 25 minutes per 100 Go, plus the time to import the keys (a few minutes)


When it's done you will see:
Code:
Importing key 102/103:
Address: 1H.....
Privkey: 5J.....

Importing key 103/103:
Address: 1P.....
Privkey: 5K.......


The new wallet /home/jackjack/recovered_wallets/recovered_wallet_1313635724.dat contains the 103 recovered keys


117  Bitcoin / Bitcoin Technical Support / [GUIDE] Create a Bitcoin address from scratch on: August 19, 2011, 01:10:05 AM
As requested here: https://bitcointalk.org/index.php?topic=37966.msg466652#msg466652


  • Download Pywallet. You only need to install Python 2.7. If you encounter some problems installing Python, post in pywallet thread, someone will answer you quickly
  • Pick 64 random characters in the following list: [1234567890abcdef]
  • For example, say you chose "1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef"
  • Run the console (Windows-R then "cmd" then Enter on windows)
  • Run:
Code:
cd 'the directory where you downloaded pywallet'
  • Then run:
Code:
./pywallet.py --info --importhex --importprivkey 1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef


This should returns:
Code:
Address (Bitcoin): 19ffB4HttNCHfY1t3YuErEytCspyHyVMwv
Privkey (Bitcoin): 5HxJb9hZNXEEk9SAM3J7gXBK6zgkkLW5dpx2WDdBZub8HxifdDH
Hexprivkey: 1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef
The first line is your address
The second and the third is two different manners to write your private key, you don't have to save/print both, but be sure to keep at least one of them
118  Alternate cryptocurrencies / Altcoin Discussion / Oldminer put in his signature 'I0coin was launched as a joke - jackjack' on: August 18, 2011, 02:17:58 PM
Is it really worth it?
You are mad, aren't you?

Here's the joke:
Quote
I have an idea! If anybody has an hour or two to spare, he can create:
- I0coin (= Ixcoin with 0 pregenerated blocks)
- IBcoin (= Ixcoin with all pregenerated coins intended for bounties). Bounty block would be the first one, it would generate 200k coins or whatever Ixcoin is offering (with all bounty coins public), after that generation would mimic Ixcoin.

Either way, I think people would jump from Ixcoin in notime (or realize the absurd idea of Ixcoin) 
119  Other / Meta / New subforums are required on: August 17, 2011, 02:09:04 PM
From the newbies forum: https://bitcointalk.org/index.php?topic=36864.0

Quote
How I can do to request a sub-forum (Child Boards) in the Português (Portuguese) forum?

We need a sub-forum titled "Market and Economy" (Mercado e Economia), same in other forums in each country.

I thank anyone who can help.
120  Bitcoin / Bitcoin Discussion / Are you using the binaries from sourceforge or did you compile Bitcoin yourself? on: August 17, 2011, 01:21:24 PM
You can of course comment here
Pages: « 1 2 3 4 5 [6] 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!