Bitcoin Forum
August 04, 2024, 02:00:50 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 [271] 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 ... 334 »
5401  Other / Beginners & Help / Re: Is it possible to generate say a 100 BTC addresses and then let my website give on: March 25, 2013, 03:52:20 AM
It would be recommended to use a separate address for every tx and if you are expecting a lot of txs then you might also consider increasing the address pool from 100 to say 1000 (for backup purposes).
5402  Economy / Services / Re: Looking for people to store some of the forum's money on: March 24, 2013, 05:41:37 PM
I think that theymos did a wise thing to not "put all the eggs in one basket" and I would recommend that other members set up "watch wallets" for the addresses as they have already been published publicly.

I have charged the forum 0% for my service in this matter (not that I think there is anything wrong with others charging for the service) and do hope that others can see that this is only to help protect forum from a single point of attack.
5403  Bitcoin / Project Development / Re: Thinking about my next bitcoin project on: March 24, 2013, 09:15:23 AM
Have you taken a look at at CIYAM Open (ciyam.org/open with an introductory slideshow at ciyam.org)?

The site is going to be getting a "makeover" soon and we would be keen to discuss improvements and possible partnerships.


Cheers,

Ian.
5404  Bitcoin / Bitcoin Discussion / Bitcoin100 giving money to a film - why? on: March 23, 2013, 05:08:02 PM
I was rather surprised to see Bruno's posts about Bitcoin100 deciding to donate money to the Bitcoin Documentary film idea (fielded by a member who AFAIA has mostly only posted in the Speculation board previously).

I don't know if I am alone in this thinking but I thought that Bitcoin100 was created to help charities and I don't see how making a documentary film about Bitcoin really fits into that vain (it seems to be rather a world apart in my view at least).

I have been a supporter of the original Bitcoin100 idea (and was one of the initial donators to it) and I would like to be convinced that this is a good idea so perhaps this could be answered.

Please note that this is not intended as any sort of trolling thread but just to gauge what other Bitcoin100 donators think about this.
5405  Economy / Currency exchange / Re: 40 USD paypal - I WANT TO BUY BTC on: March 23, 2013, 12:32:04 PM
Paypal is reversible (and buying virtual currencies is specifically against their terms) so going first doesn't give anyone any reason to think that the transaction won't result in the loss of BTC and USD or at the very minimum accounts being frozen or shut down.

As has been pointed out many, many times - do *not* do Paypal for BTC.

If you seriously are wanting to buy BTC then do so with *cash*.
5406  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 23, 2013, 09:26:01 AM
No, only outputs.

Aha - then I am not quite sure what the OP's problem is if you look at something like this:

https://blockchain.info/tx/0e058abfe294c051262610ff689a75577f5884529cc1cfcc108cd491b0d6b64f

Huh
5407  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 23, 2013, 09:21:05 AM
Interesting - does this apply to both "sides" of the tx (i.e. the input UTXOs and the output UTXOs)?
5408  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 23, 2013, 09:10:27 AM

Didn't know you could add the line # to such source links - nice!

But just below that is the following:

Code:
if (fAllowFree)
    {
        if (nBlockSize == 1)
        {
            // Transactions under 10K are free
            // (about 4500 BTC if made of 50 BTC inputs)
            if (nBytes < 10000)
                nMinFee = 0;
        }
        else
        {
            // Free transaction area
            if (nNewBlockSize < 27000)
                nMinFee = 0;
        }
    }

And the call you showed to this function sets fAllowFree to true.
5409  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 23, 2013, 08:34:58 AM
That's not it - the default fee rules force fee payment on dust outputs.

If the output is old enough then no tx fee is necessary (even if it is only 1 Satoshi).
5410  Other / Beginners & Help / Re: bitcoin-qt return addresses on: March 23, 2013, 04:52:34 AM
Perhaps I should of said "Sender address", which I anticipate mainstream users will interpret as the "reply-to address".  

There really is no such thing - there are only UTXOs (which could either be from "coinbase" on from one or more previously unspent outputs that was part of someone's "wallet" whose output addresses generally are not anything that would or should be known to the the recipient).

In short if you want to determine who sent you a payment then create a unique payment address for them to pay to (the software and indeed the protocol are not designed to do this).
5411  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 23, 2013, 04:44:49 AM
And to quote myself:

oic - am guessing the best way to avoid fees with a faucet would be to have all its UTXOs being the exact amount as the outputs you wish to send and then just make sure that the wallet is "old" enough so that no tx fees are required at all (and replace wallets with new ones as they get exhausted).

(although that might mean having to put a month delay between now and your next payouts to age the coins enough)

Note that using uniform payment UTXOs (i.e. no change needed) will help to avoid getting even newer dust UTXO's every time you make a payout.
5412  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 22, 2013, 06:57:20 AM
Do sendmany

Yes - that is probably the easiest solution.
5413  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 22, 2013, 06:45:19 AM
oic - am guessing the best way to avoid fees with a faucet would be to have all its UTXOs being the exact amount as the outputs you wish to send and then just make sure that the wallet is "old" enough so that no tx fees are required at all (and replace wallets with new ones as they get exhausted).
5414  Bitcoin / Development & Technical Discussion / Re: How to send BitCoins with LOW TX FEE (Not No TX Fee) on: March 22, 2013, 06:37:29 AM
Am guessing you are playing SD or similar?

The problem is that they send you a "dust" UTXO every time that you lose (it contains the minimum fee + 1 satoshi). Once your wallet starts filling up with such dust the standard client has difficulty in working out how to spend it without actually charging you more in tx's fees than the amount you might want to be sending (assuming it is a very small amount you are wanting to send in particular).

There are some solutions to cleaning up such wallet *dust* although my advice would be to avoid gathering the dust in the first place. Smiley
5415  Alternate cryptocurrencies / Altcoin Discussion / Re: Namecoin / .bit domain cost on: March 21, 2013, 02:18:00 PM
As an alternate DNS so far it would seem that namecoin is a complete and utter failure (and I own a .bit domain).

Whether it can morph itself into something more useful (say as some sort of key DB that is merged mined) is still waiting to be seen (but if it can I think that it might find its niche).
5416  Economy / Services / Re: Offering software development services for BTC on: March 21, 2013, 02:07:00 PM
Thank you very much for the heads up, I'll look closer into that!

No worries - and welcome to PM if you want some further details.
5417  Economy / Services / Re: Offering software development services for BTC on: March 21, 2013, 01:53:03 PM
OP - have you looked at CIYAM Open (http://ciyam.org/open).

We do not do hourly rates but instead fixed BTC prices - but if you have the skills you'll be able to earn in excess of your USD rate fairly easily.

Smiley
5418  Bitcoin / Project Development / Re: Bitcoin: The Documentary (submit all ideas here) on: March 21, 2013, 04:05:05 AM
Seriously, no suggestions? Not even one for changing the name of documentary?

Hmm... how about "Satoshi's Rules" Huh
5419  Other / Beginners & Help / Re: Where is anonymity if your address is public on: March 20, 2013, 03:27:40 PM
Am I right this can be done using public-key cryptography?

Yes - of course that is exactly what HTTPS is (and is the same way you can safely use your internet banking).
5420  Other / Beginners & Help / Re: Where is anonymity if your address is public on: March 20, 2013, 01:33:56 PM
What I do not fully understand is how a recipient can remain anonymous. I mean, every recipient has to send his public address to the sender, right? And businesses have to "announce" this on their website. So if you would keep track of the addresses that, let's say WordPress, announces on it's website for senders to send their bitcoins to, you can see which transactions are going to WordPress. Everybody could see the incoming cashflow of WordPress. Am I wrong?

One would assume that WordPress (or any other public type of recipient) would show you the address to pay to via HTTPS (so it is not made public).

Of course if you and every other sender wants to disclose the address that they paid their fee to then WordPress will indeed have lost its payment anonymity (assuming that was important to them) but potentially so have you and every other sender. Smiley
Pages: « 1 ... 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 [271] 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 ... 334 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!