Bitcoin Forum
May 30, 2024, 10:38:31 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 [199] 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 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 ... 317 »
3961  Bitcoin / Wallet software / Re: Samourai Wallet doesn't show my funds on: August 07, 2018, 08:54:16 AM
Was the mnemonic phrase you tried to enter, given to you by the same wallet (samourai) ?

Usually the mnemonic phrase (if written down correctly) should recover all of your keys.

If you are sure you have written it down correctly, you might try to import it into another wallet.

The derivation path when importing the seed into a different wallet (e.g. electrum) depends on the address-type you have used.
  • Legacy (P2PKH, starting with 1..): m/44'/0'/0'
  • Nested segwit (P2SH, starting with 3..): m/49'/0'/0'
  • Native segwit (bech32, starting with bc1..): m/84'/0'/0'


You should be able to see your funds once you import your seed (and choose the correct derivation path) inside electrum.
But i don't have an explanation for your funds not appearing on your mobile (except for a wrong/different mnemonic phrase).
3962  Bitcoin / Electrum / Re: Strange TX "+0." and can't sync on: August 07, 2018, 08:43:41 AM
Ok, I will update my version. (I don't make it because affraid lose my btc)

You don't have to worry when updating electrum. Your wallet files will always be compatible.
Actually you should make sure to always have the up-to-date version of a wallet installed. This is the only way to somehow be protected against potential threats.

Make sure you have a backup of your 12/24 word seed. This seed is being used to generate all private keys inside your wallet. In case of an electrum update failing or a hardware failure, you will always be able to derive your keys again to access your coins.
3963  Bitcoin / Electrum / Re: Unable to upgrade Electrum 3.2.2 from 3.1.3 on Ubuntu 14.0.4 / VirtualBox on: August 07, 2018, 08:40:31 AM
I can only reiterate — again, again — that I now have Electrum 3.2.2 running

Since your initial problem was that you were unable to upgrade to 3.2.2, you might want to lock the thread now because everything is working as it should ?

If you somehow still believe that something is not working as intended, please give a detailed description of what you think should happen and what actually happens.
For me it seems like you don't have a clue what you are actually doing inside the terminal, and just believe to have an error because the output you see should be different according to google.
3964  Bitcoin / Development & Technical Discussion / Re: Consolidating Unspent Transaction Outputs on: August 07, 2018, 08:27:17 AM
RAM is non-persistent memory. Each data has to be stored on the hard drive and has to be loaded into the RAM while reading/writing to it.
I see. So, should I assume that normal nodes keep the data on the hard drive to be loaded when needed to make validations, while miner nodes try to have it in the RAM most of the time to be as fast as possible in their calculations?

Each node keeps the data on the hard drive. But miner do not try to keep the whole UTXO data inside the RAM. Verification is performed extremely fast, even including I/O.
Keeping all of these inside the ram would decrease the time it takes to validate the transactions, but this effect is so extremely small, it is not even worth being considered. Especially with an average block interval of 10 minutes.

Miners do perform the work in form of trying to find a hash below a specific target including the block data. They verify the transactions once, and then start to find a suitable hash.
3965  Bitcoin / Armory / Re: update armory wallet 0.96 on: August 07, 2018, 08:18:37 AM
You can import your private keys one by one into core by using the console:
Code:
importprivkey 5YourPrivateKey "" false

The false at the end keeps core from rescanning the blockchain after each import.
First import all of your private keys, then do a rescan.


But the easier way is it import them into electrum, basically following the small guides from HCP.

3966  Bitcoin / Electrum / Re: Unable to upgrade Electrum 3.2.2 from 3.1.3 on Ubuntu 14.0.4 / VirtualBox on: August 06, 2018, 02:15:52 PM
Sorry, I just don't understand. As said, at this point I do have 3.2.2 already installed and running as it it supposed to, so it's difficult for me to see the point.


According to this:

Where did you download and extract the Electrum-3.2.2.tar.gz file?
I just cannot remember, it's all been very confused, over three weeks ago (posts 4 to 12 in this thread). Possibly, I downloaded it from the Mac interface, then moved it over to the Ubuntu desktop and unpacked it there. It got deleted afterwards.


you are not able to find the directory. And this also is the reason that you can't start electrum. You just don't know where you put that file.
So you can either search your harddrive for the electrum folder and then simply run these 2 steps:

4) Enter the directory:
Code:
cd Electrum-3.2.2/

5) Finally run electrum:
Code:
python3.5 electrum

Or download it again, which takes 1 additional minute of your precious time, following all 5 steps.


3967  Bitcoin / Development & Technical Discussion / Re: Multiply or divide coins in blockchain on: August 06, 2018, 01:59:41 PM
I see, you mean that for each address I would have to create a transaction that x or div by 2 and this cannot happen simultaneously, which will end in different blockchain on different wallets. The blockchain would stop working or it would be huge mess right?

No, he means that it won't be possible to agree on an exchange price upon block creation between multiple nodes simultaneously.
You would need one central source of data (exchange price). This would lead to easy manipulation, weakened security and complete centralization.

And in case of a fork it wouldn't just be a 'huge mess', it would create a second (or multiple) forkchains which would split the network into small pieces. Your network would effectively not be fully operational in that case.
3968  Bitcoin / Electrum / Re: Unable to upgrade Electrum 3.2.2 from 3.1.3 on Ubuntu 14.0.4 / VirtualBox on: August 06, 2018, 01:52:27 PM
You might just simply download and unzip the file again. These 5 steps take about 1 or 2 minutes.


1) Open a console and navigate to the path you'd like to put electrum in.

2) Download electrum with this command:
Code:
wget https://download.electrum.org/3.2.2/Electrum-3.2.2.tar.gz

3) Unzip the file:
Code:
tar -xvzf Electrum-3.2.2.tar.gz 

4) Enter the directory:
Code:
cd Electrum-3.2.2/

5) Finally run electrum:
Code:
python3.5 electrum
3969  Bitcoin / Development & Technical Discussion / Re: Consolidating Unspent Transaction Outputs on: August 06, 2018, 01:41:42 PM
Consolidating your inputs while fees are low should definitely not be ignored, especially if you are receiving a lot of small payments.
1 sat/B transactions do get confirmed pretty quick currently. But make sure to have the RBF-flag set to increase the fee in case of an unexpected spam attack.
This will barely cost you a few cents. But the advantage compared to a transaction with a big amount of inputs and high fees is definitely worth it.


By the way, I'm not sure where the UTXO database is stored. Is it stored on a hard drive, or in the computer's RAM?

RAM is non-persistent memory. Each data has to be stored on the hard drive and has to be loaded into the RAM while reading/writing to it.
3970  Bitcoin / Bitcoin Technical Support / Re: How to retrieve bitcoin from deceased brother on: August 06, 2018, 01:00:19 PM
Besides of physically searching through all of his stuff looking for a hardware wallet (physical device which holds private keys), paper wallet (printed wallet) or a seed backup (12 or 24 'random' words) which can all grant access to the coins, you could also search through his hard drive to find the software he used to store his BTC.

The general approach would be to first find out the software he used, then the way to access these coins (e.g. password protected file or printend paper backup).
I'd always look for a paper backup (most wallets do use a 12/18/24 word seed). Such a paper backup can restore the whole bitcoin wallet.

Only then you will be able to move the funds out to a new address of yours.
3971  Bitcoin / Electrum / Re: Electrum Mac wallet/testnet setup on: August 06, 2018, 12:54:56 PM
open -n /Applications/Electrum.app args testnet

now finds the Electrum.app but now says that -args and -testnet do not exist.

You need to use –– instead of in front of an argument.

Your command would look like this:
Code:
open -n /Applications/Electrum.app --args --testnet 
3972  Bitcoin / Electrum / Re: Server wont sync on: August 06, 2018, 10:01:31 AM
Get 3.2.2 from electrum.org and open your wallet with this version.
You might also try to connect to any other server. The server does NOT store your coins/private keys. The server is only used to retrieve information about your transactions.
You can connect to any random server you want.

However, regardless of the version your password should always allow you to unlock your wallet. Did you download electrum from the official site (https://electrum.org/) ?
Where did you download the 3.1.2 beta version from?
3973  Bitcoin / Bitcoin Technical Support / Re: Having somes troubles with wallet QT! on: August 06, 2018, 09:53:53 AM
Cos in a first time, they did'nt appears in receinving address, and with a block explorer I get back sucessfully my mining address!
So I import my old adress sucessfully!

But now my coins appears in read only mode, so I'll try to import private key address, but an error occured like 'invalid private key format"

If you have imported an address from visiting a blockchain explorer, you have created a watch-only wallet.
You basically added this specific public address on a 'watch'-list inside your wallet.

You will not be able to spend funds associated to this address without the corresponding private key.



On somes other forum, they explained that this error is due to a new wallet core and new private key format!
So how to convert private key to the new format?

If the string you have tried to import into the private key field did start with a 1.., 3.. or bc1.. it was an address, NOT the private key.
In this case you can not convert anything since this is not a format issue.

You need the private key to be able to access the funds.
3974  Bitcoin / Bitcoin Technical Support / Re: Recovery on: August 06, 2018, 09:43:39 AM
Before messing around with recovery software you should make sure to have at least one or two additional images of your drive.

The process would be the following:
  • Install your preferred linux on a bootable medium
  • Make X images of your old drive using DD or any copy tool and a software writeblocker
  • Keep the original drive and don't touch it
  • Use any recovery software on one of the images you have
  • Preferably use a fresh image for each software you try

This way you won't be able to mess something up which might lead to a corruption of your data.
And if nothing else works, you will still have the possibility of asking a professional data recovery service with your original drive.
3975  Bitcoin / Bitcoin Technical Support / Re: Automated Bitcoin startup with backup on: August 06, 2018, 07:51:35 AM
Would you please tell me, how long it takes to reconstruct the whole blockchain with just the chainstate folder?

You can not reconstruct the blockchain out of this data. Your individiual chainstate folder stores data related to your personal transactions / balances. This is being derived from the blockchain data.
This basically is your 'backup' of 'synching the blockchain'.

To restore if something fails, delete and redownload (or use your backup the blockchain) the corrupted files. In case of something happening which leads to your chainstate to break (would require another sync) you can simply copy your backup of the chainstate folder into the correct directory.
3976  Bitcoin / Development & Technical Discussion / Re: How to know user deposit coins if exchange's coin daemon server is down? on: August 03, 2018, 04:41:54 PM
This scenario sounds like it happend to you?
Together with the countless threads regarding basics of setting up an online service, this would definitely make sense.

If your system is broken, freely explain your issues and enough people would be willing to help you. Obfuscating your story won't help you to fix your problem and will cost anyones time who is going to come up with a detailed explanation.


If you, on the other hand, just asks because of curiosity, the answer depends on each exchange. Most probably have implemented their own error handling.
They either start rescanning from the point of failure, or have a different form of acquiring the information.
3977  Bitcoin / Bitcoin Discussion / Re: McAfee’s ‘Unhackable’ Bitcoin Wallet Allegedly Hacked on: August 03, 2018, 04:29:56 PM
Claiming the wallet is unhackable is fine, it's still in the early stage [...]

In my opinion, this is definitely NOT fine.
It is NOT a hardware wallet. It does NOT have any secure element. It does NOT have any positive features a 'real' hardware wallet has.

This is just a small chipset with an implemented algorithm to derive private keys from a 'salted' password. Effectively a brain wallet.


The whole concept IS and WILL be unsafe. You can't repair a concept whose whole approach is wrong.
3978  Bitcoin / Bitcoin Technical Support / Re: send from "1xxx..." to "3xxx..." ? on: August 03, 2018, 10:58:46 AM
all anyone has to do is move their BTC out before doing anything fork related.

That's not as easy and convenient as it sounds. At least not if you aren't storing all of your holdings on a desktop or mobile wallet.
If one has a hardware wallet with multiple currencies, it would be a pain in the ass to completely move all funds out, setting up a new seed, moving all funds back in.
You will lose daily access to your old addresses (which might still be needed for signing messages). And you also have the problem of securely storing the coins while you are setting up a new seed.

If, for example, one is only storing his coins on a desktop wallet without many periodically transactions coming in, it is no hassle to change the seed and simply 'forget' about the old wallet/seed.
But for anyone who does need access to his old addresses for signing etc.. such a hassle simply is not worth the few bucks you gain with these forks.. especially nowadays..
3979  Bitcoin / Development & Technical Discussion / Re: How many nodes required to make 51% attack unfeasible? on: August 03, 2018, 10:36:08 AM
Does this mean that even if an attacker wants to attack and has the money to do so, the attacker is unable to because he will never get his hands on a bigger percentage of the stake in the network compared to the developers? If that is the case, is there a reason for not making it the "best practice" for new coins?


If the developer (who hold >50% of the stake) do not sell their stake to the attacker, he won't be able to perform a 51% attack.
The 'reason' for it not to be the 'best practice' is 1) that there is no 'best practice'. Each coin is (at least should be) different and also serves a different purpose.
And 2) most people won't buy a new coin where some entity holds 50% of the stake. Even one single entity holding 10% can be a disaster in terms of price stability / decentralization / trust.



I still want to ask further though, do developers rely anything else other than algorithm? Have anyone seen maybe a solution from the cryptonomics, perhaps?
Also, how deadly is a 51% attack to a new coin? Would it be more grievous?

Regarding cryptonomics, if it is worth to attack a new coin with a 51% attack (liquidity has to be high, has to be listed on multiple exchanges, profitable enough), you won't be able to really avoid it.

The only thing which truly avoids such a situation is the correct decision regarding the consensus algorithm. If it is not worth to attack the coin, it won't be attacked.
If destroying a new shitcoin which isn't worth anything is part of a hidden agend.. well.. then you can't really prevent that. The only thing you can do is to make an attack as unprofitable as possible.

The only way to really prevent that is some technical barrier (e.g. someone holds 51% stake and always will be honest; theoretically safe, but practically not doable since there is no reason to have that much trust in someone).
3980  Economy / Economics / Re: Is wallet security important to use? on: August 03, 2018, 06:20:21 AM
When you keep something important and worthy in a lock, you need to lock it securely and you do every little step to make things safe and sound [...] It is your responsibility now that this lock never fails or become vulnerable to any security flaw.

The problem is that most people don't know how to secure their own mobile / pc.
How are they supposed to keep a wallet secured knowing that the amount of cybercrime is only going to grow in the future with more and more lucrative goals (crypto on a non-techy users device) ?

The only real viable option is to use a user-friendly hardware wallet which already delivers the highest possible grade of security. This, together with a small portion of common sense, would be the only way to allow average people to use crypto on a daily basis without losing their money.
But this is far away from 'the users responsibility that this lock never fails or becomes vulnerable'. Still a lot of trust into the developer of the hardware wallet would be required (to create a good product AND to get updates out ASAP when vulnerabilities are out).
Pages: « 1 ... 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 [199] 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 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 ... 317 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!