Bitcoin Forum
June 21, 2024, 06:51:10 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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] 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 ... 192 »
2241  Bitcoin / Electrum / Re: Reusing Electrum address. Okay?? on: October 04, 2014, 01:13:38 AM
You can reuse addresses. You'll find the address under receive tab> main account> used.
2242  Bitcoin / Electrum / Re: Different address on Android and PC? on: October 03, 2014, 02:36:54 AM
The android wallet is buggy and hasn't been updated in a long time. The QR code scanning feature doesn't work so you will have to manually enter the seed.

IMO this wallet should be removed from the electrum site or people will face monetary losses because of it.
2243  Bitcoin / Bitcoin Technical Support / Re: BIP38 cold storage question on: September 30, 2014, 03:45:48 AM
That 4 char password had unicode characters in it. That's why it was hard to break. A 6 char password with only letters ("gibberish word") isn't going to be so hard.
2244  Bitcoin / Electrum / Re: Questions regarding Electrum on a server on: September 30, 2014, 03:25:11 AM
You can do this via the command line. Type `electrum help` to see the available commands and `electrum help <command_name>` for command specific help.

As for balance checks in recent electrum versions it spawns a daemon that listens for multiple requests. The daemon automatically dies if no new requests are forthcoming. So you can do periodic bulk checks via  a cron job.
2245  Bitcoin / Electrum / Re: Can't Broadcast Transaction on: September 21, 2014, 07:22:43 PM
Dust means a very small amount of bitcoin. Any transaction with outputs of less than 5430 satoshis will not be relayed by most nodes. So does your transaction send small amounts like that?
2246  Bitcoin / Electrum / Re: Electrum HD Wallet Balance on: September 21, 2014, 12:45:49 PM
You can add individual addresses as watch only addresses using the console tab. First make a backup of your wallet file and then try this:

Code:
imported_keys = wallet.storage.get(  'imported_keys'  )
watch_only_addresses = { '1address1..' : '',  '1address2': '',  '1address3..' : '' }
imported_keys.update( watch_only_addresses )
wallet.storage.put( 'imported_keys', imported_keys )

Replace 1address1, 1address2 etc. with the most used addresses from your old wallet.

Then restart electrum and you'll find the watch only addresses listed under imported on the receive tab. Right click on each of them and select freeze so that electrum does not try to spend from these addresses (it can't anyway cause it doesn't have the priv keys)

The above is all for 1.9.8 and earlier wallets. If you are using the in-development version of electrum from the git repo then don't try this with that.
2247  Economy / Digital goods / Re: [WTS] Google Apps Domains on: September 15, 2014, 11:40:50 AM
One domain sold. The rest are still available. Very reasonable prices!
2248  Bitcoin / Development & Technical Discussion / Re: Is it possible to create a message readable only to the owner of an address? on: September 14, 2014, 11:35:42 AM
Electrum tried to implement message encryption/decryption in their software. gmaxwell found a bug in it so the feature was disabled. The next version, which is currently under development on their github repo, seems to have that feature enabled so maybe they've figured out a way to do it safely.
2249  Bitcoin / Electrum / Re: Electrum need backup? on: August 31, 2014, 03:46:35 PM
You should backup the wallet file as well because it contains labels for transactions and addresses. These are not restored from seed. An alternative approach is to use the label sync plugin. Activate that in tools > plugins and follow on-screen instructions.

That's right. Even if all Electrum servers in the world go down!

I dunno if that was supposed to be ironic, but you can still set up your own Electrum server if none are available.

I don't think he was being sarcastic. He knows what he's talking about:

https://bitcointalk.org/index.php?topic=73651.0
2250  Bitcoin / Wallet software / Re: Considering Electrum and Hive; which to choose? on: August 29, 2014, 07:02:10 AM
If you have any specific questions then ask us. Otherwise describe how you intend to use it. Only then can we help you.

Edit: OP has made two posts that are exactly the same. Not looking good this.

What r u talking about ? U r linking to a post of another user !!!

He deleted both his posts in those threads. They were exactly the same and were sending people to this thread. I don't know what agenda he has.
2251  Bitcoin / Bitcoin Technical Support / Re: Unable to launch bitcoin-qt binary in Debian Wheezy on: August 29, 2014, 06:57:03 AM
Just want to know if anyone is running a Bitcoin core node on a Debian Wheezy Pi and if this is the most up to date thread?

The latest binaries work out of the box. If they don't look for the ones (in the same tarballs) with 'static' in their names. These have the correct glibc version compiled in.
2252  Other / Beginners & Help / Re: Help what exchange is considered preev or bitstamp on: August 28, 2014, 11:09:45 AM
Bitstamp is the benchmark USD rate if that's what you mean.
2253  Other / Beginners & Help / Re: What if someone generates the same address/key as you? on: August 26, 2014, 10:03:44 AM
This will blow your mind:

http://lmgtfy.com/?q=bitcoin+quantum+sun+pic
2254  Bitcoin / Electrum / Re: LOST SEED AND WALLET (RECOVER) on: August 26, 2014, 09:55:17 AM
You should shut down your computer immediately because the more you use it the lower the chances that any data can be recovered. Then you can remove the hard drive and send it off to a data recovery operation. It'll cost you a lot, though.
2255  Bitcoin / Bitcoin Technical Support / Re: Printing private keys for cold storage on: August 25, 2014, 11:23:56 PM
I've set up an offline wallet (Armory - Ubuntu OS - offline computer) and now want to print the private keys as a backup in case my offline computer (older laptop) crashes/dies.

What type of printer can I use to be sure that the printer does not store the private key data? Which type of printers should be avoided? Any advice/suggestions would be appreciated. 

If you are using armory you should not print out the private keys. Just the root key will suffice. Armory is a deterministic wallet which means that all address specific private keys are derived from the root key. The root key is all you need to backup. To backup the root key double click on the wallet > select "backup this wallet" and then "printable paper backup"
2256  Bitcoin / Bitcoin Technical Support / Re: Need help with key generation on: August 24, 2014, 04:54:05 PM
you are not the first, you will not be the last.

What are you implying? Can you please elaborate?
2257  Economy / Digital goods / Re: [WTS] Google Apps Domains on: August 23, 2014, 10:17:23 AM
up
2258  Bitcoin / Wallet software / Re: Considering Electrum and Hive; which to choose? on: August 22, 2014, 11:56:12 PM
If you have any specific questions then ask us. Otherwise describe how you intend to use it. Only then can we help you.

Edit: OP has made two posts that are exactly the same. Not looking good this.
2259  Bitcoin / Bitcoin Technical Support / Re: Spend exactly the coins of a given private address on: August 22, 2014, 09:44:34 PM
Bitcoin core has coin control since 0.9.0. See the screens here:

https://bitcoinspakistan.com/blog/whats-new-in-version-0-9-0-of-bitcoin-qt/

Select only the unspent outputs of your imported address and you'll keep things separated.
2260  Bitcoin / Bitcoin Technical Support / Re: How to allow users to deposit funds on your website, without option to withdraw? on: August 22, 2014, 09:42:28 PM
There is no ready made system. You'll have to make one yourself. blockchain.info receive api is one option.
Pages: « 1 ... 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] 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 ... 192 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!