oggers
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 25, 2013, 04:33:39 PM |
|
Ok. Right clicking on one or several addresses on the receive tabs does the trick. Thank you for this improvement.
But what about the connecting issue?
|
|
|
|
Mitchell
Staff
Legendary
Offline
Activity: 4102
Merit: 2315
Verified awesomeness ✔
|
|
November 25, 2013, 04:44:13 PM Last edit: November 26, 2013, 12:15:27 AM by bitcoininformation |
|
Another bug: If my laptop goes into sleep mode and starts up again, Electrum won't sync or reconnect.
|
| | | . Duelbits | | | ▄████▄▄ ▄█████████▄ ▄█████████████▄ ▄██████████████████▄ ▄████▄▄▄█████████▄▄▄███▄ ▄████▐▀▄▄▀▌██▄█▄██▐▀▄▄▀▌███ ██████▀▀▀▀████▀███▀▀▀▀█████ ▐████████████■▄▄▄■██████████▀ ▐██████████████████████████▀ ██████████████████████████▀ ▀███████████████████████▀ ▀███████████████████▀ ▀███████████████▀ | | | | | . ▄ ▄▄▀▀▀▀▄▄ ▄▀▀▄ █ █ ▀▄ █ ▄█▄ ▀▄ █ ▄▀ ▀▄ ▀█▀ ▄▀ ▀█▄▄▄▀▀ ▀ ▄▀ ▄▀ ▄▀
Live Games | | ▄▄▀▀▀▀▀▀▀▄▄ ▄▀ ▄▄▀▀▀▀▀▄▄ ▀▄ ▄▀ █ ▄ █ ▄ █ ▀▄ █ █ ▀ ▀ █ █ ▄▄▄ █ ▀▀▀▀▀▀▀▀▀▀▀▀▀ █ █ █ █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ █▄█ █ ▀▀█ ▀▀█ ▀▀█ █ █▄█
Slots | | . ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄ █ ▄▄ █ ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄ █ █ ▄▄ █ █ █ █ █ █ ▄▀▀▄▀▀▄ █ █ █ ▀▄ ▄▀ █ █
Blackjack | | | | █▀▀▀▀▀█▄▄▄ ▀████▄▄ ██████▄ ▄▄▄▄▄▄▄▄█▀ ▀▀█ ████████▄ █ █████████▄ █ ██████████▄ ▄██ █████████▀▀▀█▄▄████ ▀▀███▀▀ ████ █ ███ █ █▀ ▄█████▄▄▄ ▄▄▀▀ ███████▀▀▀ | | | | | | | | | | [ Đ ][ Ł ] AVAILABLE NOW | |
Advertisements are not endorsed by me.
|
|
|
oggers
Newbie
Offline
Activity: 13
Merit: 0
|
|
November 26, 2013, 12:13:20 AM |
|
No problem with my home laptop, it connects just after starting. I must check my work laptop. Ok. Right clicking on one or several addresses on the receive tabs does the trick. Thank you for this improvement.
But what about the connecting issue?
|
|
|
|
dexX7
Legendary
Offline
Activity: 1106
Merit: 1026
|
|
November 27, 2013, 04:58:40 AM |
|
Electrum 1.9.5 was released. (binaries will follow)
Changes: * coin control: the 'prioritize' command is replaced by a "send from" menu in the Qt GUI. (you may select multiple addresses to spend from with the mouse, and the "!" shortcut is compatible with this) * used addresses are moved to a collapsed section * more bug fixes Hi, it seems that freeze/unfreeze resets the column width of "Address" every time. Using 1.9.5 standalone executable on Win7 x64. While the idea of coin control is really awesome, I prefer the implementation of coin control is implemented for the stock client: Cheers and thank you very much for this great client nevertheless!
|
|
|
|
Tachikoma
|
|
November 27, 2013, 09:06:44 AM |
|
Electrum 1.9.5 was released. (binaries will follow)
Changes: * coin control: the 'prioritize' command is replaced by a "send from" menu in the Qt GUI. (you may select multiple addresses to spend from with the mouse, and the "!" shortcut is compatible with this) * used addresses are moved to a collapsed section * more bug fixes Hi, it seems that freeze/unfreeze resets the column width of "Address" every time. Using 1.9.5 standalone executable on Win7 x64. While the idea of coin control is really awesome, I prefer the implementation of coin control is implemented for the stock client: Cheers and thank you very much for this great client nevertheless! Feel free to port it to Python and send a pull request. I'm sure it will be very welcome.
|
|
|
|
hobbes
|
|
November 29, 2013, 04:27:55 PM |
|
If I wanted to split the seed in two parts would this procedure make sense for split cold storage:
* Generate two normal seeds by starting Electrum without datadir (part1 and part2) * concatenate the two parts with a single space in between * use concatenated parts as input to "restore from seeds" * put one part to a safe place (bank locker); keep the other one safe, too * restore from concatenated parts whenever necessary
|
|
|
|
Abdussamad
Legendary
Offline
Activity: 3682
Merit: 1580
|
|
November 29, 2013, 04:30:52 PM |
|
If I wanted to split the seed in two parts would this procedure make sense for split cold storage:
* Generate two normal seeds by starting Electrum without datadir (part1 and part2) * concatenate the two parts with a single space in between * use concatenated parts as input to "restore from seeds" * put one part to a safe place (bank locker); keep the other one safe, too * restore from concatenated parts whenever necessary
You can generate a new wallet using the -w switch. No need to move/rename the data dir. Run electrum --help for more details. As far as splitting the seed goes you can also use shamir's secret sharing algo to create arbitrary n of m splits. Google shamir's secret sharing for more info. There's a ready made program out there called ssss
|
|
|
|
hobbes
|
|
November 29, 2013, 04:50:08 PM |
|
If I wanted to split the seed in two parts would this procedure make sense for split cold storage:
* Generate two normal seeds by starting Electrum without datadir (part1 and part2) * concatenate the two parts with a single space in between * use concatenated parts as input to "restore from seeds" * put one part to a safe place (bank locker); keep the other one safe, too * restore from concatenated parts whenever necessary
You can generate a new wallet using the -w switch. No need to move/rename the data dir. Run electrum --help for more details. As far as splitting the seed goes you can also use shamir's secret sharing algo to create arbitrary n of m splits. Google shamir's secret sharing for more info. There's a ready made program out there called ssss Thanks for the hint. I read about ssss but I like the nice pronounceable words from the Electrum seed better.
|
|
|
|
Abdussamad
Legendary
Offline
Activity: 3682
Merit: 1580
|
|
November 29, 2013, 04:52:06 PM |
|
If I wanted to split the seed in two parts would this procedure make sense for split cold storage:
* Generate two normal seeds by starting Electrum without datadir (part1 and part2) * concatenate the two parts with a single space in between * use concatenated parts as input to "restore from seeds" * put one part to a safe place (bank locker); keep the other one safe, too * restore from concatenated parts whenever necessary
You can generate a new wallet using the -w switch. No need to move/rename the data dir. Run electrum --help for more details. As far as splitting the seed goes you can also use shamir's secret sharing algo to create arbitrary n of m splits. Google shamir's secret sharing for more info. There's a ready made program out there called ssss Thanks for the hint. I read about ssss but I like the nice pronounceable words from the Electrum seed better. Yeah they definitely are more user friendly. ssss is for when you need more than the straight forward n of n split.
|
|
|
|
SebastianJu
Legendary
Offline
Activity: 2674
Merit: 1083
Legendary Escrow Service - Tip Jar in Profile
|
|
November 30, 2013, 12:45:54 AM |
|
Electrum 1.9.5 portable isnt working portable. It doesnt find the wallet and creates a directory in the system dir which shouldnt happen for a portable version i guess.
|
Please ALWAYS contact me through bitcointalk pm before sending someone coins.
|
|
|
Tachikoma
|
|
December 03, 2013, 10:14:28 AM |
|
Electrum 1.9.5 portable isnt working portable. It doesnt find the wallet and creates a directory in the system dir which shouldnt happen for a portable version i guess.
What's the md5 of your 1.9.5 portable.
|
|
|
|
SebastianJu
Legendary
Offline
Activity: 2674
Merit: 1083
Legendary Escrow Service - Tip Jar in Profile
|
|
December 04, 2013, 12:04:08 AM |
|
Electrum 1.9.5 portable isnt working portable. It doesnt find the wallet and creates a directory in the system dir which shouldnt happen for a portable version i guess.
What's the md5 of your 1.9.5 portable. It shows the correct md5 from the download website. But i was wrong. The dir in roaming was old. It doesnt create it. Instead it creates a dir electrum_data in the rootdir of the .exe and then asks for creating a new wallet. Should i push files into that dir somehow? I have the dir locale and the files blockchain_headers, electrum.dat and the .exe.
|
Please ALWAYS contact me through bitcointalk pm before sending someone coins.
|
|
|
Tachikoma
|
|
December 04, 2013, 01:52:36 PM |
|
Ah yeah. The new file it's looking for is wallets/default_wallet. I believe there should however be a migration system in place that should automatically do this for you. If it hasn't try moving your wallet to that folder/ filename but please back it up first
|
|
|
|
Sioux
|
|
December 04, 2013, 08:12:17 PM |
|
so electrum you arre still not workingg when arre you going to conect?
Cant connect here! what do?
|
|
|
|
SebastianJu
Legendary
Offline
Activity: 2674
Merit: 1083
Legendary Escrow Service - Tip Jar in Profile
|
|
December 04, 2013, 10:57:28 PM |
|
Ah yeah. The new file it's looking for is wallets/default_wallet. I believe there should however be a migration system in place that should automatically do this for you. If it hasn't try moving your wallet to that folder/ filename but please back it up first I tried it. But pushing the 2 files and the dir locales to electrum_data/wallets/default_wallet didnt work. I then put them one directory higher and it started. But it doesnt save any settings. I cant change language or the currency. Is auto-connect connecting only via SSL when i set it that way? The ssl-dropdownbox is grayed out then too so i wonder if it honors that setting at all with autoconnect.
|
Please ALWAYS contact me through bitcointalk pm before sending someone coins.
|
|
|
btcven
|
|
December 05, 2013, 11:47:54 AM |
|
Ah yeah. The new file it's looking for is wallets/default_wallet. I believe there should however be a migration system in place that should automatically do this for you. If it hasn't try moving your wallet to that folder/ filename but please back it up first I tried it. But pushing the 2 files and the dir locales to electrum_data/wallets/default_wallet didnt work. I then put them one directory higher and it started. But it doesnt save any settings. I cant change language or the currency. Is auto-connect connecting only via SSL when i set it that way? The ssl-dropdownbox is grayed out then too so i wonder if it honors that setting at all with autoconnect. It should take the electrum.dat in ~/.electrum and turn it to /wallets/default_wallet in the first run of the new versions. So you have to place your electrum.dat in the older default folder that is the legacy ~/.electrum hidden folder. You can also use the File >Open option to select the desire wallet file, and then use the File > Copy option.
|
|
|
|
SebastianJu
Legendary
Offline
Activity: 2674
Merit: 1083
Legendary Escrow Service - Tip Jar in Profile
|
|
December 05, 2013, 10:35:04 PM |
|
Ah yeah. The new file it's looking for is wallets/default_wallet. I believe there should however be a migration system in place that should automatically do this for you. If it hasn't try moving your wallet to that folder/ filename but please back it up first I tried it. But pushing the 2 files and the dir locales to electrum_data/wallets/default_wallet didnt work. I then put them one directory higher and it started. But it doesnt save any settings. I cant change language or the currency. Is auto-connect connecting only via SSL when i set it that way? The ssl-dropdownbox is grayed out then too so i wonder if it honors that setting at all with autoconnect. It should take the electrum.dat in ~/.electrum and turn it to /wallets/default_wallet in the first run of the new versions. So you have to place your electrum.dat in the older default folder that is the legacy ~/.electrum hidden folder. You can also use the File >Open option to select the desire wallet file, and then use the File > Copy option. Im not sure if i see what you mean. It sounds a bit like linux directories? Lets say my portable electrum is at L:\Electrum and all files are in there: blockchain_headers electrum.dat electrum-1.8.1-portable.exe and dir: locale I put electrum-1.9.5-portable.exe in there and start it. The following dir-structure is built: electrum_data certs wallets When i put blockchain_headers electrum.dat and dir: locale into electrum_data and stat 1.9.5 then it starts and creates a file: electrum_data\wallets\default_wallet (Its a file, no dir) It puts some files from the electrum servers in certs. electrum.dat seems to be gone. Instead there is a file config. Electrum itself has its settings set back to default. When i restart 1.9.5 all settings i made in settings or plugins are gone again. So no safing of settings happens. The dir structure is then: electrum_data certs (files from electrum servers) locale (dirs with locales) wallets default_wallet (file) blockchain_headers (file) config (file) electrum-1.9.5-portable.exe (file) Im not sure but i think the saving of configurations might be the only problem now.
|
Please ALWAYS contact me through bitcointalk pm before sending someone coins.
|
|
|
splat44
|
|
December 06, 2013, 05:44:34 PM |
|
Those member having connectivity problems:
Since yesterday I was problem when no connection or by receiving message "Synchronizing..." while trying auto connecting.
By restarting client always help!
|
|
|
|
Mitchell
Staff
Legendary
Offline
Activity: 4102
Merit: 2315
Verified awesomeness ✔
|
|
December 06, 2013, 05:50:14 PM |
|
Those member having connectivity problems:
Since yesterday I was problem when no connection or by receiving message "Synchronizing..." while trying auto connecting.
By restarting client always help!
Of course that helps, but it's not how it should work.
|
| | | . Duelbits | | | ▄████▄▄ ▄█████████▄ ▄█████████████▄ ▄██████████████████▄ ▄████▄▄▄█████████▄▄▄███▄ ▄████▐▀▄▄▀▌██▄█▄██▐▀▄▄▀▌███ ██████▀▀▀▀████▀███▀▀▀▀█████ ▐████████████■▄▄▄■██████████▀ ▐██████████████████████████▀ ██████████████████████████▀ ▀███████████████████████▀ ▀███████████████████▀ ▀███████████████▀ | | | | | . ▄ ▄▄▀▀▀▀▄▄ ▄▀▀▄ █ █ ▀▄ █ ▄█▄ ▀▄ █ ▄▀ ▀▄ ▀█▀ ▄▀ ▀█▄▄▄▀▀ ▀ ▄▀ ▄▀ ▄▀
Live Games | | ▄▄▀▀▀▀▀▀▀▄▄ ▄▀ ▄▄▀▀▀▀▀▄▄ ▀▄ ▄▀ █ ▄ █ ▄ █ ▀▄ █ █ ▀ ▀ █ █ ▄▄▄ █ ▀▀▀▀▀▀▀▀▀▀▀▀▀ █ █ █ █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ █▄█ █ ▀▀█ ▀▀█ ▀▀█ █ █▄█
Slots | | . ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄ █ ▄▄ █ ▄▀▀▀▀▀▀▀▀▀▀▀▀▀▄ █ █ ▄▄ █ █ █ █ █ █ ▄▀▀▄▀▀▄ █ █ █ ▀▄ ▄▀ █ █
Blackjack | | | | █▀▀▀▀▀█▄▄▄ ▀████▄▄ ██████▄ ▄▄▄▄▄▄▄▄█▀ ▀▀█ ████████▄ █ █████████▄ █ ██████████▄ ▄██ █████████▀▀▀█▄▄████ ▀▀███▀▀ ████ █ ███ █ █▀ ▄█████▄▄▄ ▄▄▀▀ ███████▀▀▀ | | | | | | | | | | [ Đ ][ Ł ] AVAILABLE NOW | |
Advertisements are not endorsed by me.
|
|
|
btcven
|
|
December 06, 2013, 05:55:40 PM |
|
Those member having connectivity problems:
Since yesterday I was problem when no connection or by receiving message "Synchronizing..." while trying auto connecting.
By restarting client always help!
Of course that helps, but it's not how it should work. ThomasV is pushing some fixes to the server code to avoid this problems. Don't worry, after some more fixes, you and all Electrum users will have to struggle your heads to find a reason to come here and say hi
|
|
|
|
|