Bitcoin Forum
May 24, 2024, 06:18:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 108 109 110 111 112 113 »
1621  Bitcoin / Development & Technical Discussion / Re: CreateTransaction: suggest/enforce fee for big low-priority transactions on: March 01, 2011, 10:02:34 PM
RE: limitfreerelay:

Agreed, that's better.  I think we should start soft-coding the amount that is considered "free" instead of hard-coding CENT, and make the default less than 0.0001 BTC.

Separate subjects:

The entire transaction memory pool should be size-limited, with lower-priority transactions dropped.

I agree with Steve-- free transactions are a HUGE selling point, and I think rational miners should realize that their bitcoins will be more valuable if there are more users.  And there will be more users if "free transactions" is a feature.  I think we can come up with a solution where "normal" transactions are free, but spam or abnormally complicated transactions (yes, like those bitpenny rewards pooled mining participants are currently getting once a day) "require" a fee (where "require" is really "if you don't include a fee your transaction will probably never be confirmed.")

And finally... we've got a problem right now; lets think about what fix(es) move us in the right direction quickly, or think about fixes that will solve the current problem (that we may need to undo/rework later).
1622  Bitcoin / Bitcoin Discussion / Re: Transaction fee on: March 01, 2011, 07:51:01 PM
Would it help if you restructured that way payments were sent so that it wouldn't always be new coins from the change of the last transaction? Like maybe break your stash into a bunch of .05 addresses and let them age and then you can send them out with no change?

No.  The only way to "break your stash" is to create transactions that are broadcast; splitting your wallet into lots of small transactions makes the problem worse for you and everybody else (it is more 'expensive' to handle fistfulls of nickels and pennies, even in the bitcoin world).
1623  Bitcoin / Bitcoin Discussion / Re: Bitcoin Faucet is running dry on: March 01, 2011, 06:28:00 PM
Thanks for the donations, everybody!

Catching up on questions:

Is the faucet supported entirely by donations?  Not entirely-- the captchas have generated about $100, which will go into refilling it.  It looks like captcha revenue is only covering about 1/4 of the cost of the coins, although the company that does the money-for-captchas is a startup looking for more advertisers.  Actually, if you want to advertise a bitcoin-related business you should talk to them... (they're adscaptcha.com)

Was somebody abusing the faucet?   Yep, somebody was exploiting a weakness in my IPv6-handling code.  I've fixed the weakness (the faucet is now much stricter about what it considers "different" IPv6 addresses), but I think I'm fighting a losing battle-- the next step will be to require you to login with a valid google account to get coins.  I hate to add another hoop to jump through...

Is it time to reduce the payout?  Maybe soon, but I'd rather wait until the next release is out and then reduce the payouts another factor of 10 (so 'standard' payout if balance was above 500BTC would be 0.05BTC, and 0.005 when it was running low).

Can I add a link to bitcoinmonitor.com?   Done.


1624  Bitcoin / Development & Technical Discussion / Re: CreateTransaction: suggest/enforce fee for big low-priority transactions on: March 01, 2011, 06:07:55 PM
By the way, an important question: if I generate a 500KB block with only free transactions in it, it will be accepted by the network, right?
Or this current "default fee policy" is not just for the default client, but for the protocol as a whole?

You can generate a 1MB block with only free transactions in it and it will get accepted (maximum block size is 1MB, although the standard bitcoin client will never generate blocks larger than 500K).

Quote from: Syke
That sounds like the pool needs to do it differently, not the network. If this is a pool payout to 500 people in a single transaction, then the pool needs to break it down into smaller transactions. I sent a few regular transactions yesterday and they were immediately included in solved blocks.

The problem isn't the pool payout-- the problem is that people participating in the pool end up with wallets full of tiny (e.g. penny-size) transactions.  When they go to spend those tiny transactions, they're bundled up together to make a transaction that is small in value but large in size.

Pools can mitigate the problem by requiring larger minimum payouts (e.g. 1 BTC instead of 0.01 BTC).
1625  Bitcoin / Development & Technical Discussion / Re: CreateTransaction: suggest/enforce fee for big low-priority transactions on: March 01, 2011, 04:02:39 PM
This definitely needs fixing; it is another "people getting lots of very small change from mining pools" issue.

The code that controls this is CTransaction::GetMinFee() in main.h and CreateNewBlock() in main.cpp.

We should think about:

+ Is setting aside a specific amount of space for free transactions the right thing to do?  Maybe blocks should just get filled in reverse priority order (with transactions with fees at the front of the line)

+ What to do with the current transaction backlog.
If old, big, low-priority transactions get flushed, then there needs to be some way for the bitcoin client(s) that sent them to reclaim those coins.  Perhaps the client should stop retransmitting, and reclaim, transactions if, oh, 5,000 blocks go by without the transaction getting accepted.

Or maybe it makes sense to let those old transactions trickle in; perhaps the next version of bitcoin should take the oldest transaction in the memory cache and add it to the generated block.
1626  Bitcoin / Development & Technical Discussion / CreateTransaction: suggest/enforce fee for big low-priority transactions on: March 01, 2011, 03:39:08 PM
This is:  https://github.com/bitcoin/bitcoin/issues#issue/86

currently (2011/03/01) a backlog of transactions that dont seem make it into blocks is building up (according to ArtForz now 670 transactions).

People are starting to complain, see http://bitcointalk.org/index.php?topic=3835.msg57031#msg57031 for an example.

This was discussed on #bitcoin-dev

ArtForz> that tx should have a score of 20567855
ArtForz> so it falls short of the dPriority > COIN * 144 / 250 test
ArtForz> and as tx size is > 4000, fAllowFree is never true for it
theymos> Ah. So it will never confirm?
ArtForz> probably not

ArtForz> looks like the tx-sending code needs some fixing
molecular> like not generate a tx with a score too low, or suggest to add a fee?
ArtForz> yep
ArtForz> check size and priority of transaction, if it's > 4kB and score < 57600000 require min fee
ArtForz> maybe reduce the size limit to 3.5k or so, otherwise it can only get into an otherwise empty block

Maybe the transaction cache should not be unlimited?
1627  Bitcoin / Bitcoin Discussion / Re: Transaction fee on: March 01, 2011, 03:12:25 PM
Afaik it won't really speed it up in the current situation, but as soon as bitcoin becomes more popular it will help proceeding transactions faster.
Actually, I'm considering turning on transaction fees for the Bitcoin Faucet because small transactions with "new" coins are given very low priority, and recently new users are noticing that their Faucet coins are not arriving promptly.
1628  Bitcoin / Development & Technical Discussion / Re: Core Bitcoin Development Help Wanted on: March 01, 2011, 03:10:21 PM
Why not keep an up-to-date TODO list of small tasks for new developers to get mucked into? A launchpad.

Good Idea.  You should do that.  Maybe marking issues at github with a "Launchpad" tag would be a good system?
1629  Bitcoin / Development & Technical Discussion / Re: [PULL] Full-precision display/entry for bitcoin amounts on: March 01, 2011, 01:00:42 AM
That seems like an internationalization bug. What was wrong with using the correct localization?

I was tempted to do more than fix the rounding problem...
... but then sanity overwhelmed me.

If you'd like to start a discussion of whether or not it is a good idea for one-thousand German bitcoin amounts to be displayed as "1.000,00", be my guest.  I think there was such a discussion in the past, but I didn't pay attention to it.  I think it would be nice if an amount like "1.001 BTC" (or even "1.001 tonal bitcoins") was unambiguous.

RE: subcent throwaway change:  turn it into a proper PULL request (yes, you'll have to-- horrors! -- use that evil, not 100%-pure-open-source github) and it'll happen faster.
1630  Bitcoin / Bitcoin Discussion / Re: How many transactions per second can the bitcoin network sustain? on: February 28, 2011, 10:48:33 PM
80 transactions per second is 6.9 million transactions per day.  That is a LOT.

PayPal was doing about 2 million transactions per day in 2008; if there are three times as many bitcoin transactions as PayPal transactions in a few years that would be a very good problem to have, and I'm confident "we" would figure out how to deal with lots of transactions.
1631  Bitcoin / Development & Technical Discussion / Re: [PULL] Full-precision display/entry for bitcoin amounts on: February 28, 2011, 09:38:36 PM
It was LC_NUMERIC, I bet... (I'd just set LANG and unset the rest and assumed they'd all get picked up; internationalizing C++ applications is something I know very little about).

I modified the patch to format numbers the way they were formatted before:  always , for the thousands separator, and . for the decimal point (instead of letting sprintf try to do the right thing).
1632  Bitcoin / Bitcoin Discussion / Re: Block 111111 on: February 28, 2011, 07:33:14 PM
uhm, so ?
So?  So?!?  11 is my favorite number!
1633  Bitcoin / Development & Technical Discussion / Re: Consuming JSON-RPC from Bitcoin using .net on: February 28, 2011, 07:32:30 PM
Are you setting the ContentType as described here:
  https://en.bitcoin.it/wiki/API_tutorial_(JSON-RPC)#.NET_(C_)
1634  Bitcoin / Development & Technical Discussion / Re: [PULL] Full-precision display/entry for bitcoin amounts on: February 28, 2011, 06:29:09 PM
This patch introduces a bug on de_DE locale when sending using the wxGUI. Dialogbox with "Error in amount"

Can anybody else reproduce this?  It works for me:
1635  Bitcoin / Development & Technical Discussion / Re: Bitcoin Formula for Mac OS X on: February 28, 2011, 12:48:51 PM
The official client uses an older version of Berkeley DB (4.8, according to build-osx.txt).

You're linking to Berkeley DB 5.1.19, so when you run your client it upgrades the bitcoin database files, which makes them incompatible with the official client.
1636  Bitcoin / Development & Technical Discussion / Re: Negative balance on: February 28, 2011, 02:56:46 AM
EDIT: Is there a way to get rid of the "" account?

No.  Generated coins need a place to go (they're credited to the "" account), and coins you send using sendtoaddress (where you don't specify an account) need to be debited from somewhere (they're debited from the "" account).

And it's theoretically possible somebody might could use one of your hidden "change" bitcoin addresses to send you coins; they'd be credited to the "" account, too.
1637  Bitcoin / Bitcoin Discussion / Re: What is better about BTC than USD for typical person? on: February 27, 2011, 09:15:51 PM
I think you are perhaps confusing USD as a "currency" with all the financial services that have built-up around it.

JollyGreen was asking about 'typical people'.  And I think he was asking about "right now".

Typical people aren't going to distinguish the currency from all of the financial services that make the currency safe, convenient, etc.  And I think we should be honest-- bitcoin-the-currency needs more mature financial services before bitcoin-the-system makes sense as a payment solution for typical people.
1638  Bitcoin / Bitcoin Discussion / Re: What is better about BTC than USD for typical person? on: February 27, 2011, 08:16:06 PM
What are the benefits for the typical person just trying to save for the future or buy some goods online or in typical day to day use?

Saving for the future:  bitcoins are designed to be like gold: durable, only a limited supply.  They have some advantages over gold-- they're much easier to store safely (you don't have to buy a bank vault or hire guards or trust a storage company) and, because they're electronic, they can be backed up.  And when it is time to sell them the transaction costs are very, very low.

Buy some goods online:  I don't think bitcoins have any significant advantage... yet.  Transaction fees are lower once you get bitcoins, but the transaction fees to get bitcoins probably eliminate that advantage.

I think Bitcoin's real, hidden advantage is the fact that you don't have to ask anybody's permission or fill out any paperwork to start doing creative, innovative things with them.  Lots of people are doing lots of innovative things with bitcoins, and while most of those innovative things will probably fail (most startups fail), I'm optimistic that some will succeed and in 5 years we'll be using bitcoins in some way we haven't even imagined yet.  I'm not going to pretend to know which market niches bitcoin will fill-- maybe it will be migrant workers using bitcoin to send money back home and avoiding international wire transfer and currency conversion fees.

Maybe teenagers in China will use them to buy stuff online because they can't get a credit card.

Maybe big multinational corporations will decide to use bitcoins to pay their supply chain to avoid currency exchange risk and save 0.1% on their transactions.  Who knows?  Even if bitcoin turns out to be just "a better store of value than gold" it will be hugely successful.
1639  Bitcoin / Development & Technical Discussion / Re: Is there any general explanation of this? on: February 27, 2011, 12:29:40 AM
See:
  https://en.bitcoin.it/wiki/Block_hashing_algorithm

The exact hash done is double-sha256: sha256(sha256(block_header_data))
See:
 http://en.wikipedia.org/wiki/SHA-2

... for information about sha256
1640  Economy / Trading Discussion / Re: New ClearCoin feature: refund-to-charity on: February 26, 2011, 10:34:26 PM
However if the transaction never happens (e.g., my trading partner backs out and doesn't end up sigining in to ClearCoin) then is there a way for me to get the escrow fee that I prepaid back?

Great suggestion, I will modify the code to refund the escrow fee (if any) and donate the rest.

Quote
Like a mediator's address?  This is the most critical feature, IMO.  Though it will be awkward to try to obtain in advance a bitcoin address for the mediator for each transaction.  Hmm ...

I have some preliminary plans for mediated escrows that will require all three parties to have ClearCoin accounts.  I'm still thinking about how to make it as simple to use as possible.

Quote
Quote
3. If the coins are refunded to charity, show Alice and Bob the transaction ID so it is easier for them to make sure ClearCoin isn't taking the coins.
If they are a 501 (c)  3 (U.S. charitable organization) , I might like that so that, at a minimum, I have a "receipt" to claim that refund as a charitable contribution.
Great idea, I'll put it on the "nice to have" list.

Quote
I want greater control over the escrow ending date.  Contracts generally have specific date for things to happen and ClearCoin should match that practice by allowing me to specify the exact date (and time?) that the escrow ends.
Easy to do.  How critical is time?  Plus or minus 1 hour would be easy (there's a 'cron job' that runs once per hour to process refunds), but I don't want to make the Create an Escrow page more complicated than it really needs to be.

Quote
Will the threshold continue to be 100 BTC?  When ClearCoin started, that 100 BTC represented about a $25 max amount.  Today that is about a $93 amount.   I'ld like to know if there is a general USD dollar amount target for the "no fee / fee" threshold, or can I cound on up to 100 BTC being free for quite some time yet?
I'll probably target transactions under $50 remaining free, and I'm thinking of capping fees at $4... but it is likely I'll experiment with different pricing models as I fill out features.  Paying mediators (before and/or when mediation is required) adds lots more wrinkles...
Quote
Jurisdiction: Might there be plans for a ClearCoin service residing in a different jurisdiction?
Nope.  Maybe I'll franchise later if Bitcoin and ClearCoin really take off.
Quote
Anonymity: Currently if my Google account gets hacked, then my ClearCoin escrows are vulnerable should the attacker know that I use ClearCoin.  Are there any plans to allow registration using an authentation method other than a Google account?
No-- what authentication method would you like to see?  I don't like the idea of supporting arbitrary OpenID authentication, because it is so easy to create throwaway OpenID identities (creating throwaway Google identities is at least a LITTLE bit harder...).
Pages: « 1 ... 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 108 109 110 111 112 113 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!