Bitcoin Forum
September 06, 2024, 09:40:32 AM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 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 »
141  Bitcoin / Bitcoin Technical Support / Re: Need help to not lose bitcoins on: September 12, 2012, 04:16:30 AM
After installing it, start a cmd window and run "c:\path\to\bitcoin\bitcoin-qt.exe -rescan".
142  Bitcoin / Bitcoin Technical Support / Re: Need help to not lose bitcoins on: September 12, 2012, 04:09:06 AM
The coins don't have to arrive in your wallet.dat.  They just need to get listed in the public blockchain.

As long as you have a backup of your wallet.dat, you're fine.  Go ahead and update to the latest.

You can also download a recent blockchain here:  http://sourceforge.net/projects/bitcoin/files/Bitcoin/blockchain/

However, make sure you run with -rescan the first time so it'll find your coins.

Edit: fixed URL
143  Bitcoin / Development & Technical Discussion / Re: confirmations on change address on: September 11, 2012, 08:38:06 AM
Waiting for confirmations isn't a network requirement.  It's just a trust issue.

You can automatically trust your own change.  You're not going to double-spend attack yourself, so there's no need to wait.

The "change" has no technical difference from the "payment".  It's just two outputs.  For example, consider these two transactions:

Address A has 1 BTC
You pay 0.75 BTC to B
You receive 0.25 BTC change to C

Address A has 1 BTC
You pay 0.75 BTC to B and 0.25 BTC to C
There is no change left over

The only difference is in the first, address C was automatically generated by your client; in the second, you entered it manually.  From a network and blockchain perspective these two transactions are identical, bit for bit.
144  Bitcoin / Bitcoin Technical Support / Re: Tips for Recovering A Locked Wallet on: September 11, 2012, 05:14:26 AM
I suppose it could be brute-forced or password cracked but I've found no tools to do this to a *.dat file as opposed to zips or other regular files.

For anyone who stumbles on this in the future: I wrote a simple brute force script which may work if you know most of your password.  Get it here:

https://bitcointalk.org/index.php?topic=85495.msg942171#msg942171
145  Bitcoin / Development & Technical Discussion / Re: New vulnerabilities in the advent of off-the-shelf ASIC mining on: September 07, 2012, 01:47:12 AM
Quote
People should use open source mining solutions....

I want people to use open source solutions, but for-profit miners are going to use whatever works best for them.

This is one of many reasons that it's important to keep developing Litecoin and other alternative chains.
146  Alternate cryptocurrencies / Altcoin Discussion / Re: Profit with litecoins? on: September 06, 2012, 08:10:43 AM
It will still affect your other applications.  By design, Litecoin is very memory intensive.  Even if it's only running on two cores it will consume the CPU cache (L1 cache will be OK if you set strict affinity, but L2 and L3 cache are shared across cores), and it will consume memory bandwidth (causing the L3 misses to stall the CPU even longer).  If your other application is a light load you may not care, but be sure to test.

Solo vs pooled is entirely your choice.  Do whichever is more fun for you.  Smiley
147  Alternate cryptocurrencies / Altcoin Discussion / Re: Profit with litecoins? on: September 06, 2012, 07:33:49 AM
I recommend you do not misappropriate your employer's resources for your own profit.  It is both illegal and immoral.

If they are your own servers, sure, but there are downsides.  They will consume more electricity while working, and they will run slower (even if you run the process  with low priority) because it will be constantly exhausting the CPU cache.  If you're okay with that, sure, why not?
148  Bitcoin / Bitcoin Technical Support / Re: Satoshi Client not loading on: September 06, 2012, 04:49:27 AM
All right, now we're getting somewhere.

If you just want to get it running again, try this:

mv ~/.bitcoin ~/.bitcoin-old
mkdir ~/.bitcoin
cp ~/.bitcoin-old/wallet.dat ~/.bitcoin

Then restart the client.  It will download the blockchain again and then it should work.

If you want to dig deeper into why it failed we can, but that's harder.
149  Bitcoin / Bitcoin Technical Support / Re: Satoshi Client not loading on: September 06, 2012, 01:46:17 AM
Take a look at /home/seth/.bitcoin/db.log .  What's there?
150  Bitcoin / Bitcoin Technical Support / Re: Satoshi Client not loading on: September 05, 2012, 11:33:51 PM
tail -n 50 ~/.bitcoin/debug.log
151  Bitcoin / Wallet software / Re: Bitcoind taking too long, am I doing something wrong? on: September 03, 2012, 08:39:37 PM
bitcoind runs forever until you kill it.  What are you expecting it to do?
152  Bitcoin / Bitcoin Technical Support / Re: What happens to Bitcoins that are sent to a non-existent address? on: September 02, 2012, 07:13:15 PM
There is a checksum to prevent sending to a completely bogus address.

However, if you send to the wrong address, you lose your money.  If you send to the wrong address and you happen to know who it is, you can ask them to give your money back, but it's on their honor to actually do so.
153  Alternate cryptocurrencies / Altcoin Discussion / Re: Proof of Work vs. Proof of Stake on: September 02, 2012, 06:28:21 PM
Try reading this: https://en.bitcoin.it/wiki/Proof_of_Stake

Then I can answer any questions you have.
154  Bitcoin / Development & Technical Discussion / Re: Question of Session Management on: August 29, 2012, 12:06:47 AM
I reject your premise.  I know most people are paranoid about their banking logins, but in my opinion there actually isn't that much damage that can be done by getting access to my account.  It's very hard use a login to send money irrevocably and untraceably to someone else.  Any receiving account can be reported to the police and the recipient brought in for fraud.

BTC requires much more paranoid security.

As for your questions:

1. I have active accounts at several banks, credit unions and investment firms.  Most allow me to close and reopen tabs; none create a session which will persist across browser restarts.

2. They are all in the range 10m to 45m.

3. Yes.  I actively subvert their security (which I consider unnecessary) by using a password manager with auto-login.  However, I only do so from my own computers which are encrypted and auto-lock.  I never enter passwords on computers I don't control, but if I did, I would want a short session expiration.

4. Yes, because I don't consider a random banking web site to be "sensitive".  Getting money out is hard, so it's only a privacy concern for people physically commandeering their computer after they walk away - the data is too low value to be targeted by a widespread virus.  I would not recommend setting persistence as default, but having it as an option is fine and people who set it can reasonably be expected to log out when they're done.  I would not recommend persisting across browser restarts, however.  A Bitcoin-related site where theft is much more plausible deserves a more paranoid approach.

5. Yes, the countermeasures should be there by default, but in my opinion in most cases it's fine to have an option to disable them.
155  Bitcoin / Bitcoin Technical Support / Re: How bitcoins are spent from different addresses, official bitcoin client on: August 26, 2012, 02:30:25 PM
It uses the oldest and smallest coins available.  There is no way to select specific coins in the standard client, but you can with the coderr patch:
http://coderrr.wordpress.com/2011/06/30/patching-the-bitcoin-client-to-make-it-more-anonymous/
156  Bitcoin / Bitcoin Technical Support / Re: Excessive disk usage during block chain download on: August 26, 2012, 12:14:01 PM
Everyone agrees.  It's a long-term goal to keep improving performance.
157  Bitcoin / Bitcoin Technical Support / Re: Transaction fee on: August 26, 2012, 12:11:44 PM
how much is the fee? i want to clean my wallet before upgrading my mac Smiley

Try 0.0005 BTC.

You can also just save your wallet.dat.
158  Bitcoin / Bitcoin Technical Support / Re: Excessive disk usage during block chain download on: August 26, 2012, 11:51:51 AM
If your goal is to just get started then you can just download a recent copy of the blockchain from here:

http://eu1.bitcoincharts.com/blockchain/
159  Bitcoin / Bitcoin Technical Support / Re: Excessive disk usage during block chain download on: August 26, 2012, 10:23:50 AM
https://bitcointalk.org/index.php?topic=74873.10
160  Bitcoin / Development & Technical Discussion / Re: Transaction split addresses unnecessary when sending coins, why? on: August 26, 2012, 05:21:16 AM
https://en.bitcoin.it/wiki/Change
Pages: « 1 2 3 4 5 6 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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!