Bitcoin Forum
May 28, 2024, 12:48:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 164 165 166 167 168 169 170 171 172 173 174 ... 590 »
2461  Alternate cryptocurrencies / Altcoin Discussion / Re: Doubts about BTC -> BCH process on: August 19, 2017, 06:04:37 PM
1- What blockchain files can I reuse on the Bitcoin Cash folder to not download the damn thing from scratch?
You should just copy the entirety of the Bitcoin Core datadir. However note that if you do that, you may end up with weird and unknown behavior on your Bitcoin Cash node if you have any blocks from after the fork. It may be better to copy the blocks folder and let Bitcoin ABC reindex the chainstate so that it can be on the correct blockchain.

2- Considering I have around 80 different addresses with BTC, I will need to do 80 different transactions into a brand new wallet.dat, then put the empty wallet.dat into the Bitcoin cash full node folder and once Bitcoin Cash client syncs, I should see my BCH and my BTC should be safe since the addresses no longer match. Can I now send the BCH to the exchange or do I need to also do another additional 80 transactions into 80 different addresses before sending it to an exchange?
Why do you need to do 80 transactions? You can send one transaction that spends all of your coins to whatever addresses you want; addresses don't matter. The only reason to not do that is for privacy, in which case whatever you do on Bitcoin you will have to do on BCH.
2462  Alternate cryptocurrencies / Altcoin Discussion / Re: It is possible to fork Breadwallet and add support for Bitcoin (cash) ? on: August 19, 2017, 05:59:28 PM
Yes, you can fork the Breadwallet source code and add support for BCH. There isn't anything that's stopping you from doing so. How you are going to do that is up to you and for you to figure out.

AFAIK there are no proprietary APIs, the whole thing is open source under the MIT license.
2463  Bitcoin / Hardware wallets / Re: Trezor wallet can be hacked into before it boots up on: August 19, 2017, 05:58:08 PM
Trezor has already released an updated firmware that fixes this problem: https://blog.trezor.io/trezor-firmware-security-update-1-5-2-5ef1b6f13fed

They have also released a full report detailing the vulnerability: https://blog.trezor.io/fixing-physical-memory-access-issue-in-trezor-2b9b46bb4522

Lastly, the medium post that is often referred to is vague, describes the attack that was already fixed, and does not describe any new attack or any details of how the attack used for <1.5.1 firmware versions would work on 1.5.2. It is highly suspicious, does not follow responsible disclosure, is asking people for money for the attack, and in general, does not appear to be credible at all. Independent researchers had discovered the vulnerability too and the fixes for it were in the public github repository, so it seems that that person simply looked at the commits that fixed the problem and decided to FUD about it.
2464  Bitcoin / Development & Technical Discussion / Re: Is the HD wallet format backwards compatible? on: August 19, 2017, 05:53:27 PM
Now that im going to need to do this in order to safely access my BCH, I was wondering: Does the post-0.13.0 wallet.dat file become incompatible with older clients?
Yes. If your wallet is an HD wallet (wallet files used in 0.13.0+ are not automatically upgraded to be HD so an old wallet used in 0.13.0+ can still be used in previous versions) it will not work on older versions of Bitcoin Core. Those versions will tell you that the wallet file is too new for it and it will fail to start.

or with any other nakamoto-consensus following clients like Bitcoin Knots, TRB etc?
Consensus has nothing to do with this. If the wallet software is based off of Bitcoin Core 0.13.0+, then it should be able to use the HD wallets.

Also does the HD format have any risks compared to the original format of the wallet.dat? Im a pretty paranoid guy when it comes to any updates specially when it comes to changing the wallet.dat format...
The wallet format itself is not different. All that changed was that a new key-value pair was added to mark a private key as the master HD key. Everything else is the same. The version number is also bumped to make it so that older wallet versions know that they don't support that wallet.
2465  Bitcoin / Development & Technical Discussion / Re: is it possible to mine bitcoins testnet on CPU ? on: August 19, 2017, 05:43:56 PM
The difficulty on testnet can vary wildly. There may be times that you are able to CPU mine on testnet, other times you won't be able to as the difficulty increases.
2466  Bitcoin / Bitcoin Technical Support / Re: corrupt wallet.dat on: August 19, 2017, 05:40:23 PM
Every so often it will say the word key when looking at it via notepad, is that a good sign?.
Yes. You should also see the strings version, ckey, mkey, minversion, pool, keymeta, hdchain, etc. These strings mark what type of entry a key-value pair is. You can also use BDB's db_dump utility to see what the key-pairs are.
2467  Bitcoin / Bitcoin Technical Support / Re: corrupt wallet.dat on: August 19, 2017, 06:24:44 AM
Bitcoin Core encrypts keys individually, i.e. the entire file is not encrypted. Each encrypted key is the roughly the same length, as are most other pieces of data in the wallet. You can tell if it is corrupted by looking at the unencrypted data and seeing if that looks corrupted. If keys themselves are corrupted, then you can't tell until you try decrypting them.
2468  Bitcoin / Bitcoin Technical Support / Re: JSON RPC PHP without username/password on: August 19, 2017, 06:22:11 AM
What about forcing user/pwd values via command line?

Code:
Bitcoin-qt.exe -server=1 -rpcuser=<usr> -rpcpassword=<pwd> 
Don't use rpcuser and rpcpassword. As I said, they are deprecated now and will be removed in the future. All bitcoin.conf options can be specified on the command line.
2469  Alternate cryptocurrencies / Altcoin Discussion / Re: question about parameter's chainparas.cpp on: August 19, 2017, 06:19:31 AM
Those parameters are for deploying soft forks in Bitcoin. If your altcoin does not plan on deploying soft forks or these soft forks specifically, then you don't need those parameters. However removing those parameters means that you will need to change a lot of other code to not be checking for whether those forks are active or not.
2470  Bitcoin / Bitcoin Technical Support / Re: Signing raw transactions with custom scriptPubKey/scriptSig on: August 18, 2017, 05:38:03 PM
Your scriptPubKey is wrong. You are using pushdatas to push the hex numbers 5 and 10 to stack. To push just 1 byte, you don't need to use OP_PUSHDATA1. You should only be using OP_PUSHDATA1 when you have more than 75 bytes of data to push. opcodes 1 through 75 (0x01 - 0x4b) just mean "push that number of bytes to the stack".

Also, Bitcoin Core will not be able to sign your transaction because it does not know what kind of script your scriptPubKey is so it does not know about what needs to be done in order to sign it properly.
2471  Bitcoin / Project Development / Re: Bitcointalk Account price estimator on: August 18, 2017, 01:12:13 AM
PLEASE UPDATE THE PRICING CODE

When I price accounts, they are way too expensive.
Pull requests welcome. If you think it is broken, fix it. I see no issues with it.

3.Achow should just remove the price calculating function. (I'd do it if you are ready to accept the pull request)
I don't think the price calculation should be removed as that is the explicitly stated purpose of the site anyways.
2472  Bitcoin / Bitcoin Technical Support / Re: Lost access to bitcoins on paper wallets generated via bitaddress.org, BOUNTY 1B on: August 17, 2017, 10:58:57 PM
Try using the WIF compressed key instead.
2473  Bitcoin / Armory / Re: Coins missing on: August 17, 2017, 10:51:53 PM
Go to Help > Rescan and Rebuild Databases. Then restart Armory.
2474  Bitcoin / Development & Technical Discussion / Re: Blockstream's Bitcoin Satelite WWW w/ OuterNet USB Reciever. on: August 17, 2017, 04:08:09 PM
Many people thinking this will never happen and it is all just hype. I must admit it is hard to believe such technology would come this early for Bitcoin. Heck, many countries do not even have widespread internet but they will be able to transact Bitcoin. haha
It's already happening. It was already working and happening when it was announced. It isn't just hype; there are instructions for how to set up your own stuff now since it is already broadcasting now. People have already set up receivers and are receiving blocks.

The satellite is best for places where you have a low bandwidth and poor internet connection. That type of internet connection is too poor to support running a full node, but is fine for sending transactions as transactions are small. The satellite then allows you to receive blocks through something other than a poor internet connection.
2475  Bitcoin / Bitcoin Technical Support / Re: Instructions on Crypto Security for high-risk individuals on: August 17, 2017, 06:31:02 AM
however most wallets are mainly designed for Windows and OS X as these are the major players. Linux is often heavily neglected, unfortunately.
That's not true at all. Most wallets are developed on and designed for linux systems as most developers prefer using linux. Linux is often the best supported system since that is where development and testing happens. For both Bitcoin Core and Armory, wallets are developed on Linux and only tested on Windows and OSX briefly and by few people. OSX is often most heavily neglected.
2476  Bitcoin / Bitcoin Technical Support / MOVED: Please help me to write the code for Bitcoin RPC withdrawal on: August 17, 2017, 06:26:10 AM
This topic has been moved to Trashcan.

Duplicate
2477  Bitcoin / Development & Technical Discussion / Re: Just confriming, segwit or segwit2x is going ahead on BTC? on: August 17, 2017, 06:25:44 AM
And will some of them start changing their minds a little faster if the next Core release goes through with the proposal to disconnect nodes signalling 2x?
That pull request has already been merged into Bitcoin Core. It will be part of the 0.15.0 release. This means that if you run Bitcoin Core 0.15.0, you will be disconnecting all segwit2x nodes.

No one? In this forum, at least, there was a poll with a majority approving Segwit + 2MB. You now can say that there was low participation in my poll, but I have really discussed this topic many times at BCT and there are many people here approving  a conservative block size increase.
A large part of the technical community opposes segwit2x for a variety of technical reasons. Furthermore, Bitcoin Core will not be supporting Segwit2x. The hard fork will likely still happen, just not very cleanly. If segwit2x continues to refuse to implement replay protection, refuses to set the hard fork bit, refuses to change their network magic, etc, then their hard fork will cause a lot of problems. This could result in network partitioning and replayed transactions (and thus potentially fraud). Since it is basically guaranteed to be a messy chain split, they should be working to make it as clean as possible, after all, they are the ones diverging from the status quo.
2478  Bitcoin / Project Development / Re: Need help to write the code for Bitcoin RPC withdrawal on: August 17, 2017, 06:15:45 AM
Note: I am not a PHP programmer

Your probably want to do something like this:

Code:
$wind = $bitcoin->sendtoaddress($address,$amount1,"","",true);
2479  Bitcoin / Bitcoin Discussion / Re: Bitcoin Core 0.14.2 Released on: August 17, 2017, 06:14:46 AM
Actually I don't know about Bitcoin Core 0.14.2 when I clicked on the link I get the details of the installation which shows 145GB required space I didn't understand is it need that much space? to installed please explain as a new be is it required for me to installed if yes what are the benefit by installing this version. please advise.
Yes, you need that much space for the full blockchain. Bitcoin Core is a full node; it downloads and stores the entire blockchain so that it can fully verify every single block and transaction on the network. This provides you the best security and privacy for a desktop wallet (besides privacy in transactions themselves).

You can run Bitcoin Core in pruned mode so it will not take up so much space on your hard drive. However this still requires you to download the blockchain (but not store it) and sync in order to use Bitcoin Core.
2480  Bitcoin / Armory / Re: Coins missing on: August 17, 2017, 06:06:12 AM
Check that Bitcoin Core is fully synced. Stop Armory and run just Bitcoin Core. If you don't see a green progress bar, hover your mouse over the checkmark or spinning circle in the bottom right hand corner and see if that matches the block height reported by block explorers like blockchain.info. It should be at least 480,891.
Pages: « 1 ... 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 164 165 166 167 168 169 170 171 172 173 174 ... 590 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!