Bitcoin Forum
May 24, 2024, 04:03:20 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 108 109 110 111 ... 113 »
1201  Bitcoin / Bitcoin Technical Support / Re: Unconfirmed Transactions to Self :S on: July 17, 2011, 03:45:04 AM
I think it should be enough to backup your wallet, delete your .bitcoin folder in your user profile folder, create a new .bitcoin folder, put your wallet inside and then start bitcoin. It should download a new copy of the block chain and you should be good to go. AFAIR this is a known bug.

Don't do that, you'll just spend a lot of time re-downloading the block chain and then be back in the same state you were before (unless you happen to get lucky and your transactions get confirmed while you're waiting for the block chain to download again).

Restarting bitcoin and letting it get 8 fresh connections might help. Allowing incoming connections so you have more than 8 connections should also help your transactions get confirmed.

Safest thing to do is to be patient; your transactions will be rebroadcast and eventually will get confirmed. If they're not confirmed in a week, then there are ways of deleting the transactions from your wallet and "freeing up" the stuck bitcoins, but messing with your wallet should always be a last resort.
1202  Bitcoin / Development & Technical Discussion / Re: Proposed change to sendtoaddress API call on: July 15, 2011, 11:51:15 PM
Yes, all of the send* methods return a transaction id on successful send.
1203  Bitcoin / Development & Technical Discussion / Re: Patching The Bitcoin Client To Make It More Anonymous on: July 15, 2011, 07:02:03 AM
why conflate the two issues?

Because to non-technical users, "privacy" is a single feature, not a series of separate technical issues.
1204  Bitcoin / Development & Technical Discussion / Re: Patching The Bitcoin Client To Make It More Anonymous on: July 15, 2011, 12:55:23 AM
Does this patch give any sort of warning if bitcoin isn't being used through a proxy?

I worry that a user will be REALLY careful keeping all their addresses separated so their ordinary transactions are separate from their fund-the-oppositition transactions, and then will get busted by the Secret Police who were eavesdropping on their bitcoin IP traffic at their ISP.
1205  Bitcoin / Bitcoin Discussion / Re: Small transactions without transaction fee on: July 13, 2011, 11:37:17 AM
Very-low-priority transactions will get dropped by peers, because they look like "spam" transactions and network bandwidth is not free.

I don't know if the current rules are written down anywhere besides the source code; improving the fee-handling and spam-detecting code in bitcoin is high on my bitcoin improvement wish-list, so if they were written down they'd be likely to change fairly soon...
1206  Bitcoin / Development & Technical Discussion / Re: Negative balances & Moving coins- 2 questions on: July 13, 2011, 11:28:33 AM
As you are writing this is expected behaviour, does this mean the transaction will eventually get confirmed at some point (if so, how will it be funded?)? Or do I have to do something in order to recover the coins?
It will get confirmed; it is already 'funded' (you can never send more coins than you have in total in your wallet).

This example might help; if you have exactly two accounts in your bitcoin wallet and their balances are:

Account A: -0.1 BTC
Account B: 1 BTC

... then if you tried to send 1 btc from account B the send would fail with an "insufficient funds" error.

I'd suggest funding a 'TransactionFees' account, and then when a sendfrom results in transaction fees reimburse the account by moving funds from TransactionFees.
1207  Bitcoin / Wallet software / Cross-client test data on: July 05, 2011, 09:06:13 PM
I'm thinking about how to do higher-level testing of bitcoin, and I think we could get a lot of mileage out of a testing harness that works at the network protocol level.

I'm thinking of testing things like proper handling of block chain re-orgs and valid and invalid transactions.

Examples:

Block chain re-org test:
  • Start a bitcoin client with an empty wallet and just the genesis block, -noirc listening on a non-standard port.
  • test harness connects, then feeds it a pre-canned block chain
       ... then sends it a longer fork
  • test harness makes sure client accepted the longer chain by sending it a getblocks messsage
      (or disconnects and re-connects and checks the start_height in the version message)

Valid/invalid transaction tests
  • Start bitcoin client as above
  • test harness connects, sends a series of valid and invalid transactions (via inv message and then responding to getdata).
  • test harness checks to see if transactions were accepted or rejected by checking responses to getdata (should be no response for invalid transactions)


A set of good data files with "tx" and "block" (and "inv" and all the rest) messages in them, combined with something like pexpect could make a good test system. I'm thinking they should be human-readable (with a proxy listening tool or wireshark plugin or something that dumps bitcoin protocol into the human-readable form) but pretty low-level; maybe a version message looks like:
Code:
{ "version" : [ "u32:31900", "i64:1", "i64:1309899496", "addr:127.0.0.1:8333", "addr:127.0.0.1:5432", "u64:1235876", "s:", "i32:98645" ] }


So, before I start working on something like this:  Anybody already doing something similar?
1208  Bitcoin / Development & Technical Discussion / Re: [RFC] When wallets conflict with the block chain on: July 05, 2011, 08:00:35 PM
Losing double-spent transactions should probably be reported as -1/unconfirmed, -2/unconfirmed, etc -- meaning "there is a N-confirmed transaction that conflicts with this one."

-6/unconfirmed seems like the natural "this transaction ain't never gonna be confirmed, time to report it as -N/orphan."

-1/unconfirmed should be enough to stop re-transmitting it.

And -120/orphan seems like a safe time to "unspend" any inputs (let them be spent by new transactions) that weren't spent by the other, conflicting transaction.

... he says nonchalantly, knowing full well that actually making bitcoin behave that way means a lot of very careful coding and lots and lots of careful testing...

The shortcut, maybe-good-enough-for-now solution:  export all the private keys from all the messed up wallets.  Start with a clean wallet, then re-import all the private keys and let the clean-slate bitcoin figure it all out.

1209  Bitcoin / Bitcoin Discussion / Re: Ode to the protocol ... on: July 04, 2011, 08:59:16 PM
Especially, I think the format of wallet.dat needs to be documented. A good practice it to ship the documentation of the internals together with the source code, something missing in the current reference implementation.

So go ahead and document it, volunteer to keep it up to date (that's the hard part), and submit a patch. After the latest source-file re-org, there is a top-level doc/ directory where a "wallet_format.txt" file would go.
1210  Bitcoin / Development & Technical Discussion / Re: Dangerous bug in current client on: July 04, 2011, 01:51:43 PM
https://github.com/bitcoin/bitcoin/pull/379

I think this is critical enough to include in 0.3.24rc2.
1211  Bitcoin / Project Development / Re: [50 BTC total bounty] for Groupcoin development and help on: July 01, 2011, 02:41:01 PM
if a miner ever decides break their promise and keep all the coins, that miner will be removed from the whitelist on the next periodic update.

Who decides whether or not a miner has broken the rules?

1212  Bitcoin / Bitcoin Discussion / Re: ClearCoin Closing on: June 30, 2011, 11:11:59 PM
Do we have definitive answer that ClearCoin is not for sale?
Several people have asked me about buying it, but I won't sell it unless I trust that the team that takes it on has experience keeping customer's money safe and the resources to do all of the things I don't have time for-- penetration testing, better customer support, insurance on the coins in escrow, etc.
1213  Bitcoin / Development & Technical Discussion / Re: Command Line and JSON-RPC on: June 29, 2011, 11:12:38 PM
bitcointools has a fixwallet.py that can often fix broken wallet.dat files.
  https://github.com/gavinandresen/bitcointools/
1214  Bitcoin / Development & Technical Discussion / Re: Can someone connect Facebook credits and Bitcoins on: June 29, 2011, 07:46:01 PM
One of the speakers at the Emerging Technology conference I attended at the CIA was from Facebook Payments, and he seemed pretty adamant that they're committed to doing what they can to keep the people buy the credits (users who want to play games) separate from the people who cash them out (the game developers).

So a facebook app implementation of bitcoinjs would very likely not be approved for Facebook payments.
1215  Bitcoin / Project Development / Proactive engagement (anti-government types: ignore this thread) on: June 29, 2011, 06:45:18 PM
One of Bitcoin's major challenges is the legal uncertainty surrounding it.

It is really no different from other new Internet technologies (should Skype be regulated like a phone company? Does google's deep-linking violate copyright? ... to give two examples from a few years ago...), but because it is money there are a lot more laws and regulations that may or may not apply.

It'd be easy to ignore that and just damn the torpedoes, full steam ahead with the technology. And given the nature of geeks on the Internet, that is what is going to happen anyway... but I decided it wouldn't hurt to try to be proactive and start a conversation with my representatives in Washington, DC about the Bitcoin Project.

So I met briefly with staffers from Rep. Olver and Sen. Brown's offices yesterday. I gave a very brief overview of bitcoin, mentioned Senator Schumer's "eradicate Silk Road" press conference, and stressed that Bitcoin is meant to be a stable, secure, international currency for the Internet, NOT a currency for criminals.

I also mentioned that the legal uncertainty is a barrier to innovation, and asked for advice on what, if anything, could be done about that. There is no good answer-- government moves really slowly, and they're wedging newfangled Internet ideas into legal structures that were created when telephone were the latest and greatest technology.

However, the house of representatives staffer I talked with did suggest that encouraging you-all to introduce yourselves to your congressperson's staff is a good idea.  If they know that interesting, job-creating bitcoin businesses are happening in their districts and they've met the person making it happen, then they're much more likely to support bitcoin-friendly legislation.

So, if you're an upstanding, law-abiding, clear-thinking citizen doing interesting things with Bitcoin, I encourage you to take a little time and introduce yourself to your representative's staff. I wouldn't bother talking to the representative-- they're probably too old to really understand bitcoin ("Tubes!  Money through the tubes I say!"). Talk to a 20-something staffer who grew up with the Internet and is likely to be a lot more sympathetic to the idea of a peer-to-peer Internet money.
1216  Bitcoin / Bitcoin Discussion / Australia meet-ups? on: June 29, 2011, 06:22:12 PM
Wow, this snuck up on me...

So I'm headed to Australia in a week.  I'll be in Sydney for a few days; anybody want to meet for lunch on the 9'th or 10'th?

Then I'll be in Hobart for a couple of weeks, then near Cairns for a couple of week beginning July 22'nd; send me an email if you're nearby.
1217  Bitcoin / Project Development / Re: Bitcoins as prize money for the Bitfilm Festival on: June 29, 2011, 02:44:31 PM
I moved this from the Newbie forum-- looks like a great project!
1218  Bitcoin / Development & Technical Discussion / Re: Denial of Service using orphan blocks? on: June 28, 2011, 12:24:22 PM
I'd like to see somebody work on a "shun ill-behaved peers" patch.

So if one of your peers sends you lots of garbage (blocks/transactions/addresses/whatever) you just disconnect from it and refuse to accept connections from it for a while.

The trick is thinking really hard about what is really 'garbage' and what might be honest, it-happens-every-so-often weird behavior due to block chain splits or other network events.

The goal would be to prevent a wide range of denial-of-service attacks.
1219  Bitcoin / Development & Technical Discussion / Re: [ANN] Bitcoin "No Forced TX Fee" mainline client fork on: June 27, 2011, 03:07:21 PM
A long-term fix for transaction fees (as opposed to the ad-hoc "we'll just try to guess what the 'right' fees are") is high on my priority list for bitcoin. There are only two very-high-priority things on my bitcoin wish list:  fix scaling issues and make sure we have any infrastructure in place to support ultra-high-security wallets. Fixing transaction fees is a scaling issue.

"Pick a fee and hope my transaction makes it into a block" is NOT the right answer. And we've already seen what happens when there is a mismatch between miner transaction fee policies and client transaction fees (remember the big backlog of low-priority transactions we had a couple of months ago?).
1220  Bitcoin / Development & Technical Discussion / Re: Can someone connect Facebook credits and Bitcoins on: June 25, 2011, 12:00:00 AM
Facebook credits are designed so that dollars go in, but only flow back out to the companies with facebook games.

And Facebook tries hard to ensure that the companies cashing out the credits are real companies, and not people just trying to move money through their system. There are no open exchanges, by design.
Pages: « 1 ... 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 108 109 110 111 ... 113 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!