Bitcoin Forum
May 03, 2024, 08:17:32 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 113 »
1121  Bitcoin / Bitcoin Discussion / Re: Bitcoin Faucet is back up! Free Bitcoins for all! on: September 16, 2011, 03:30:17 PM
When did it happen:  I made time to fix it a few days ago.
1122  Other / Archival / Re: delete on: September 16, 2011, 02:40:55 PM
You forgot http://www.trucoin.com/ as having control.

Please don't spread misinformation.

I agreed to join TruCoin a couple of months ago, because I knew Eric (chaord) and Chris (cbrunner) through these forums and I think their vision and experience give TruCoin a really good chance of being an important company in the bitcoin economy.

And they hired me because TruCoin won't go anywhere if core bitcoin falls apart. I will (and have) mostly be working on core bitcoin issues, jumping in and writing code that I think is critically needed that nobody else is stepping up to write and working to make bitcoin as stable and secure as possible.

If Eric and Chris tell me to do something that is bad for bitcoin, I'll let them know what I think. If they suddenly lose their minds and stop listening, then I'll quit.

If I lose my mind and start doing things that are bad for bitcoin as a whole (or if I start trying to do things to bitcoin-core that benefit TruCoin over everybody else), then you-all should fire me.
1123  Alternate cryptocurrencies / Altcoin Discussion / Re: Alternative Block Chains : be safe! on: September 14, 2011, 10:49:14 PM
I would STRONGLY suggest you look into this Gavin.

Relevant discussion on the bitcoin-dev mailing list is here:
  http://sourceforge.net/mailarchive/message.php?msg_id=28082081
1124  Bitcoin / Development & Technical Discussion / Re: What would it take to make a 51% attack on the whole bitcoin network? on: September 14, 2011, 09:27:10 PM
A Radeon 6990 has 4 gigabytes of ram.

If the task is "find a number that bcrypts/scrypts to less than a given hash target," I don't see anything that would stop a GPU programmer from implementing bcrypt/scrypt on the CPU and parallelizing at the try-different-nonces level.

Maybe I'm missing something; I'm probably biased because I worked at SGI from 1988 to 1996 and saw first-hand the evolution of GPUs from very-special-purpose chips with very limited memory to very-general-purpose vector-processing pipelines with very fast access to lots of memory.
1125  Alternate cryptocurrencies / Altcoin Discussion / Re: DO you think doubleC should open an exchange for geistgeld w/ the btcexpress sit on: September 14, 2011, 07:38:59 PM
I think it would be wise for any alternative block-chain to discourage creation of exchanges for at least a month or three to get the bugs out.

That should also help build trust that the alternative chain developers/promoters aren't just trying to make some quick BTC.
1126  Bitcoin / Development & Technical Discussion / Re: Hacking around with Scripts. on: September 14, 2011, 12:37:24 AM
I disagree with your comment about the miners though. As seeing as it was mined into the test chain I would assumed it would be mined into the prod one too? Especially if you put a big fee on it!

Non-standard transactions are allowed-by-default on the test network. So people can test things out.

They are "discouraged-by-default" on the main network (discouraged means not relayed to peers, and not included in blocks by the default mining code).

I think etotheipi is right: last I heard, Eligius was the only mining pool with different rules for non-standard transactions.
1127  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANNOUNCE] New alternate cryptocurrency - Geist Geld on: September 12, 2011, 11:31:11 PM
RE: where in the code:  script.cpp

Code:
static const size_t nMaxNumSize = 4;


CBigNum CastToBigNum(const valtype& vch)
{
    if (vch.size() > nMaxNumSize)
        throw runtime_error("CastToBigNum() : overflow");
    // Get rid of extra leading zeros                                                                                                                
    return CBigNum(CBigNum(vch).getvch());
}

... and all of the arithmetic binary ops do a CastToBigNum()

nMaxNumSize = 4 means numbers added must be 32-bits or less.

RE: simpler version being redeemed by anybody by rewriting:  D'oh!  Right, definitely need a signature so the transaction can't be modified between being broadcast and being included in a block.  I'll remove it from the wiki page.
1128  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANNOUNCE] New alternate cryptocurrency - Geist Geld on: September 12, 2011, 07:38:11 PM
RE: hidden recipient address:

I dug deeper into the Script OPs when working on the multisig proposal, and OP_ADD can't add bignums, so the 'hidden recipient' script won't work.

A simpler version would, though; I'll update the wiki.
1129  Other / Archival / Re: delete on: September 12, 2011, 03:39:52 PM
The testnet has suffered rewrite-the-block-chain-with-more-hashing-power attacks.

It does bad things to your wallet, if your wallet contains transactions that depend on previously mined but now-no-longer-valid blocks. I suspect it will cause lots of heartburn for exchanges; this patch from sipa (which hasn't been extensively tested because long block-chain re-orgs on the main chain are not an issue) might help:
  https://github.com/bitcoin/bitcoin/pull/195

Alternatively, removing all the wtx wallet transactions stored in the wallet and then running with -rescan should get back to a sane state.  Although an exchange may very well find customers end up with negative balances after doing that, and customers will likely be upset that their balances are likely to change from what they think they have if they've deposited invalid-under-the-new-chain transactions.

Successfully bootstrapping an alternative chain starting from a low difficulty, given that there are people with lots of potential hashing power and the willingness to mess around with the chain "just because they can," seems like a hard problem to me, although if people were willing to accept some centralization until hashing power got to a "safe" level it could be solved by a central authority publishing block-chain checkpoints every X blocks.
1130  Other / Beginners & Help / Re: Hi, my name is Jeremy, I am new here on: September 12, 2011, 01:54:21 AM
Hi Jeremy!
1131  Bitcoin / Development & Technical Discussion / Re: Mac .dmg, bitcoin 0.4rc2 on: September 12, 2011, 01:05:24 AM
The yoursway create-dmg script had the same problem.

I changed the approach to using a "template" .dmg file, as described here:
  http://digital-sushi.org/entry/how-to-create-a-disk-image-installer-for-apple-mac-os-x/

The .dmg includes Bitcoin.app, a compiled bitcoind daemon, and the source code .zipped up.
1132  Bitcoin / Development & Technical Discussion / Mac .dmg, bitcoin 0.4rc2 on: September 11, 2011, 05:56:03 PM
As an experiment, I've uploaded a Mac .dmg disk image with 0.4rc2 binaries to:
  https://github.com/downloads/bitcoin/bitcoin/

I'd like to switch from sourceforge to github for binary release downloads, because sourceforge doesn't support https for downloads.

Help improving the script I used to create the .dmg file would be most appreciated; see this branch for what I done did:
  https://github.com/gavinandresen/bitcoin-git/commits/osx_dmg
For some reason setting the "Drag and drop to install" background image isn't working...

shasum checksum is:
 6621bdb82fd4520f6efcb87f489e47a587d8915f  Bitcoin.dmg


Fixed.  New shasum checksum is:
 c86229b4c973da2207f516962804958424e94e08  Bitcoin.dmg
1133  Alternate cryptocurrencies / Altcoin Discussion / Re: a possible solution to money supply on: September 09, 2011, 07:18:13 PM
They won't lose any money to fees, because they won't broadcast their transactions-to-self, they'll just include them in blocks that they create.


So, evil miner does:

Gets some myselfcoins.
Creates transactions that pays themselves the myselfcoins, and pays BIG fees.
Does NOT broadcast those transactions.
... eventually mines a block that contains those transactions (they're a miner, they can put whatever transactions they like in their blocks).

Then does that again and again, re-using the same coins, getting richer and richer from the FEES+10%
1134  Alternate cryptocurrencies / Altcoin Discussion / Alternative Block Chains : be safe! on: September 09, 2011, 01:21:18 PM
I haven't seen anybody post about what would be my biggest worry if I were trying out alternative block chains. I realize this may be perceived as "Gavin is FUD'ding anything that isn't bitcoin!"  (FUD == Fear, Uncertainty and Doubt)  But I think some of you might be forgetting some basic computer security fundamentals in the excitement to be early adopters.

When I first heard about bitcoin, my questions were:

1) Can it possibly work (do the ideas for how it works make sense)?
2) Is it a scam?
3) If it is not a scam, could it open my computer up to viruses/trojans if I run it?

I answered those questions by:

1) Reading and understanding Satoshi's whitepaper.  Then thinking about it for a day or two and reading it again.
2) Finding out everything I could about the project.  I read every forum thread here (there were probably under a hundred threads back then) and read Satoshi's initial postings on the crypto mailing list.
3) Downloaded and skimmed the source code to see if it looked vulnerable to buffer overflow or other remotely exploitable attacks.

If I were going to experiment with an alternative block-chain, I'd go through the same process again. But I'm an old conservative fuddy-duddy.

If you want to take a risk on a brand-new alternative block-chain, I'd strongly suggest that you:

1) Run the software in a virtual machine or on a machine that doesn't contain anything valuable.
2) Don't invest more money or time than you can afford to lose.
3) Use a different passphrase at every exchange site.

1135  Bitcoin / Development & Technical Discussion / Re: Build virtual machines (Amazon EC2 ami images for 0.3.20) on: September 07, 2011, 01:44:19 AM
0.3.24 Linux/Windows releases weren't built on EC2, but was built on 'gitian' virtual machines (lookup trusted build process here for more info, or get in touch with devrandom).
1136  Bitcoin / Development & Technical Discussion / Re: Satoshi Client Operation: Overview on: September 06, 2011, 11:25:47 PM
Very nice bitrick!

By the way, this patch speeds up initial download quite a lot:
  https://github.com/gavinandresen/bitcoin-git/commit/042a619709fab1329e8286c6aedbb2cdc8eb3497

...as do these, which have already been pulled into git head:
  https://github.com/bitcoin/bitcoin/commit/fb45259967032d409bca4d542b55414a7c522fba
  https://github.com/bitcoin/bitcoin/commit/ec74e8a44338202bfb82faa2cef4611cc37e7fa5
1137  Bitcoin / Wallet software / Re: Bitcoin-Qt, the future Bitcoin client GUI [user input needed] on: September 05, 2011, 08:55:55 PM
Thanks; we really ought to do a parallel release of binaries with 0.4.0, and maybe keep it up until the core dev team finally merges it.
I think everybody would like to merge bitcoin-qt as soon as the 0.4 release is shipped (see the bitcoin-dev mailing list for the current known bugs).

Closing the dozens of wxWidgets-related GUI bugs in the issues list will give me great pleasure...
1138  Alternate cryptocurrencies / Altcoin Discussion / Re: [ANNOUNCE] New Solidcoin Client Fully Open-Source! on: September 05, 2011, 08:37:30 PM
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)
1139  Bitcoin / Bitcoin Discussion / Re: Bitcoin Developers on: September 05, 2011, 12:28:54 AM
I've always like how git does it: http://git-scm.com/about
Good idea.

The developers listed on bitcoin.org are the people who have 'push' rights to the github source tree, but I like the git approach.

Who wants to volunteer to make it happen?
1140  Bitcoin / Development & Technical Discussion / Re: Scalability of BitCoinD for a wallet service on: September 03, 2011, 02:07:59 AM
Optimizing the accounts code to add a berkeley db index table that indexed wallet transactions by account, and that cached account balances (and invalidated or updated the cache on receive/send) shouldn't be terribly hard for somebody who already knows c++ and berkeley db.

It is not on my short-term TODO list because there are too many other higher priority things on my TODO list, but a nice clean well-tested upward-compatible patch would be most welcome.

PS:  for ClearCoin, I used the "bitcoind keeps track of the bitcoins" architecture, and I never regretted it-- no problems with synchronization, less possibility for MtGox-like hacks that create mythical bitcoin balances out of thin air by adding an entry to a database.
Pages: « 1 ... 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 [57] 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 ... 113 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!