Bitcoin Forum
June 06, 2024, 03:10:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 164 165 166 167 168 169 ... 463 »
2361  Bitcoin / Electrum / Re: Crash issues on: January 09, 2021, 06:05:41 PM
All the posts got me hesitant to do anything since I don’t have the seed. As I mentioned, I haven’t went into the wallet for sometime. I was able to get in the wallet but when I try to send the Bitcoin to another exchange, it wouldn't allow me too . When I realized I had the old version of the wallet. I went to electron.org, clicked the window installer. It appeared that the new version was updated but when I click on the application, the window pops up to enter your password. When I enter my password, the window closes or crashes. I really need some guidance. I live in the US so it may be helpful if I was able to talk to someone.
First of all, are you absolutely sure that the Electrum that you downloaded was from Electrum.org and not some lookalike phishing website? What if you click Create a new wallet and follow through with it (ie create a new empty wallet), will it still crash?

As long as you copy your wallet file out of that directory and put it in a safe place, it should be fine.
2362  Economy / Speculation / Re: What's next for bitcoin after supply drain? on: January 09, 2021, 04:19:45 PM
Will it reach equilibrium if there is no supply, suppose that it is a free market, wouldn't that mean that anyone hodling would be okay to not sell their bitcoin to prevent a healthy circulation.
You have to understand that the utility of Bitcoin as a currency comes from the fact that is can be exchanged for other goods and services easily. If not, it won't be a currency. Bitcoin is not an investment vehicle where people gain dividends by holding onto it. There has to be a point whereby the demand goes to zero due to the high price and that's when it becomes a bubble and people starts to panic sell.

There is literally no scenario where everyone in the world would want to hold Bitcoins forever without turning it into a bubble.
If I know when will it happen do you think I would be asking questions? Hypothetically everyone holds all the supply of bitcoin and does not plan to sell it, what happens next?

Tl;dr for everyone else. Bubble bursts, price crashes and everyone loses money.
2363  Bitcoin / Bitcoin Technical Support / Re: A stuck transaction in Bitcoin qt on: January 09, 2021, 04:03:46 PM
Is there any problem with synchronizing it fully and/or upgrading it?

Right click on the transaction and select Copy Raw transaction. Go to coinb.in/#broadcast and paste the data there. It should broadcast without errors, if there is, let us know.
2364  Bitcoin / Bitcoin Discussion / Re: Is there an app to track your crypto balance whilst holding coin on hard wallet? on: January 09, 2021, 03:26:39 PM
Exposing your master public key will severely reduce your privacy. When putting it into an app, the app has to make a connection off the phone to get all the transaction information related to your master public key. This means that the app, or the server that it connects to will know the transactions that you have made or will make in the future.

Not saying you get loads of privacy from using Coinbase. I would recommend you to just monitor individual addresses as and when you need to.
2365  Economy / Speculation / Re: What's next for bitcoin after supply drain? on: January 09, 2021, 09:51:41 AM
Well with the current trend of institutional investors buying all they can as much as possible and hodling it as long as possible would be a different case right? Yes there will be people that will be selling it but there will come a time when it will only be a atomic percentage of the supply that they are filling in.
It's a free market. By market forces, the price should reach an equilibrium when the demand is equal to the supply. If somehow the demand overwhelmingly exceeds the supply, then the price will rise. It continues until it reaches an equilibrium. It's simple economics. More demand, same supply = higher price.

It functions on simple economics.
2366  Bitcoin / Bitcoin Discussion / Re: Transaction Fees on: January 09, 2021, 09:32:30 AM
Unfortunately, yes. Segwit has made some improvement in this regard but it is definitely insufficient. Unless you're proactively doing consolidation and making transactions during the less congested periods, it's likely that you're going to pay a significant fees when doing micro transactions. If you're looking to do micro transactions, it could be better for you to explore offchain solutions instead. Lightning network offers instantaneous transaction while maintaining a fairly low fee.
2367  Bitcoin / Bitcoin Technical Support / Re: Dust attack - UTXO on: January 09, 2021, 08:36:43 AM
Thanks. Can this also be done using the bitcoin-cli client?
Coin control is a feature that is implemented in the GUI. You can replicate this by getting listunspent and construct your raw transaction, sign and broadcast it.

Lockunspent is the easier way to do it without the need to specify inputs. You can just use sendtoaddress normally after using lockunspent. Note that this list doesn't persist through a Bitcoin Core restart.
2368  Bitcoin / Development & Technical Discussion / Re: Is this how a single Bitcoin data looks like? on: January 09, 2021, 06:06:14 AM
I've been scanning the references you sent...

The term "UTXO db"
          ... is that the very "coin" that I'm really looking for?

If that's the case, by dissecting it (that is "UTXO db"), I'd get to understand how a Bitcoin looks like and works - is that it? :-/
Yes. That database represents all the unspent coins (or rather unspent outputs) that currently exist. If I've understood your question correctly, which is how Bitcoins are defined and represented at a protocol level. Reading the book would probably answer most of your queries.
2369  Bitcoin / Development & Technical Discussion / Re: Is this how a single Bitcoin data looks like? on: January 09, 2021, 05:37:08 AM
-------------------------------------------------------------------------------------------------
| index of owner's private key ||    index of latest Bitcoin ledger   ||   index of Bitcoin denomination    |
 -------------------------------------------------------------------------------------------------
Nope.

But if the UTXO is that thing, how should the Bitcoin look like?
Sorry but I can't seem to form an image in my mind as to what it would look like....
Transaction always references the UTXO that are created from the previous transaction.  UTXOs are stored within the chainstate for the reference client. The link for the more technical format is here[1].

You should have a read up on Mastering Bitcoin, it has plenty of visual references which should aid your understanding. Specifically to this question, you'll have to refer to this[2].

[1] https://en.bitcoin.it/wiki/Bitcoin_Core_0.11_(ch_2):_Data_Storage#The_UTXO_set_.28chainstate_leveldb.29
[2] https://github.com/bitcoinbook/bitcoinbook/blob/develop/ch06.asciidoc


Edit: Link within the wiki is outdated and they changed the format of the chainstate from around 0.15.0 iirc.

You'll have to refer to this: https://github.com/bitcoin/bitcoin/blob/master/src/coins.h#L24 for the current format Bitcoin Core uses.
2370  Bitcoin / Development & Technical Discussion / Re: Is this how a single Bitcoin data looks like? on: January 09, 2021, 04:59:53 AM
No.

There isn't any data that specifically represents a single Bitcoin. Rather, transactions references UTXOs (unspent transaction output) within transactions to send the funds. Every transaction, other than the coinbase transaction within a block contains a UTXO to be defined and spent. The UTXO set contains data like the TXID, TX index, block which it's in, script etc, amount, etc.

Bitcoin works like a ledger where the coins are originated from the coinbase transaction in a block but there is no actual representation of individual unique coins.

The ledger should not contain the private keys pairs for each pkh address. Transactions can only be spent by fulfilling the criteria as defined in the UTXO, be it corresponding signatures or specific conditions.
2371  Bitcoin / Bitcoin Technical Support / Re: Bitcoin Core won't send Tx (but testnet will) Error: scriptpubkey (code -26) on: January 09, 2021, 03:49:53 AM
Your OP_Return has to be below 80 bytes (or a little less) or it'll be rejected by the relaying nodes as it is non-standard. Testnet is able to relay the transaction because the standardness rules are disabled there.

To increase the limit, run Bitcoin Core with -datacarriersize=X, where X is the size in bytes. Note that this only ensures that your own node is able to relay or mine transactions with OP_Return greater than X. It does not mean that the other nodes will relay or any miners will mine your transaction.

Each standard transaction can only contain a single OP_return script so you're out of luck there.
2372  Bitcoin / Bitcoin Discussion / Re: Made a minor rookie error regarding wallets, hoping to stop people doing same on: January 09, 2021, 02:54:06 AM
Not any. Some wallets has a different derivation path and you might have some trouble trying to change it to generate the correct addresses. Depends on what you're doing, generating a new wallet and getting a new seed can be a good idea at times, if you feel insecure reusing the seeds.

It's okay to switch wallets and get a new seed. Sending them when the fees are low would be better though.
2373  Bitcoin / Bitcoin Technical Support / Re: Average mempool size difference across nodes on: January 09, 2021, 02:41:13 AM
There isn't a way to get the absolute value since there isn't anyone actively recording the mempool size of the individual nodes.

The mempool size would be more dependent on the limit as specified by the individual node as opposed to the number of nodes it's connected to. Transaction propagation is generally fairly extensive, nodes will always attempt to find out transactions not in their mempool by sending mempool messages and receiving inv message as a response to populate their own mempool. It's thus fairly unlikely for the node to miss any transactions unless all of their peers has rules that are more restrictive than the user's nodes.

Not running your node 24/7 or not having more peers should not result in your mempool being significantly lower than others. At least the reference nodes should be able to see most of the standard transactions.
2374  Bitcoin / Development & Technical Discussion / Re: Updated bitcoin miner client flowchart - is this correct now? on: January 08, 2021, 03:00:31 PM
Your previous thread: https://bitcointalk.org/index.php?topic=5304116.0. I didn't receive any response from you but please let me know if you didn't understand any parts of my explanation.

To correct again, the mining software doesn't interfere with the wallet nor 'pays' the miner's rewards. The most it could do is to specify the coinbase transaction and the outputs which are already decided before a valid block is mined.
2375  Bitcoin / Bitcoin Technical Support / Re: Unconfirmed transaction & wrong adress appearing on: January 08, 2021, 08:44:19 AM
Your transaction fee was 0.0001BTC, not 0.0011BTC.

You should upgrade your Bitcoinqt, the latest version is 0.20.1. Both transactions are untouched and there isn't any other transactions in the wallet. Are you sure you were using Blockchain.info? Did you doublecheck the address you sent to after creating the URI request? You should have received either 0.001BTC or 0.04517068BTC.

Why did you not realise the error after sending the funds? It has been nearly 6 months.
2376  Bitcoin / Electrum / Re: What Do The 33 Addresses Mean on Electrum on: January 07, 2021, 05:29:23 PM
Electrum pre-generates up to 20 unused addresses for their main address and 10 for change addresses. This is known as the gap limit.

When an address receives a transaction, it's marked as used and another address is displayed to maintain the 20 addresses buffer. The change address is used when you send a transaction. As transaction outputs cannot be spent partially, the remainder of the funds after fees are sent to your change address. As to why it doesn't spend the funds back into the original address, it's for privacy so that an outsider cannot immediately determine which addresses is your recepients.

As an illustration, if I receive 0.1BTC and I'm sending 0.09BTC to B.

Me (0.1BTC) -> 0.09BTC (B)
                       0.01BTC (Change address)


As a HD wallet, Electrum uses different derivation path for both the receiving addresses and the change addresses but it is transparent to you. You will be able to generate both with your seed phrase.
2377  Bitcoin / Bitcoin Discussion / Re: Bitcoin keys question on: January 07, 2021, 05:21:54 PM
You can refer to this article to educate more about sha256 key use and description.

I'm not that expert on cryptography but I believe the one you are holding is the sha256 key for a cryptographic message like sign message. But let's wait other expert here.
No. ECDSA keys are used for the public/private key. SHA256 hashes has 64 characters, not 256. Message signing is also not done with SHA256 but rather ECDSA.


Bitcoin wallets usually use WIF for easier importing of private keys and they usually start with 5, K or L and are not 256 characters long. For ECDSA private keys to be 256 characters long, the key would have to be represented in binary, which AFAIK no wallet does that.
2378  Bitcoin / Wallet software / Re: P2SH and Bech32? on: January 07, 2021, 02:16:07 PM
Most wallets only lets the user have one type of addresses to prevent confusion. It's totally possible that some wallets could offer it in both formats, for compatibility with certain services. You can probably try to use walletexplorer to see if it belongs to exchanges. Some exchanges have both bech32 and p2wsh for their deposit addresses.

It's possible for the transactions inputs to contains UTXOs from both address type, as long as the requirements as encumbered in the UTXOs can be fulfilled.
2379  Other / Beginners & Help / Re: First Bitcoin Transaction and i dont know where by Bitcoin has been sent on: January 07, 2021, 01:10:53 PM
I've never heard of that wallet before.

Where did you get the address to give to Coinmama? On Blockchain.info, do you see your address in the output(recipient)? If you accidentally copied the wrong address, then the funds are lost and there isn't any way to get it back.
2380  Bitcoin / Bitcoin Discussion / Re: ⚡Cambridge Bitcoin Electricity Consumption Index - does Bitcoin boil the oceans? on: January 07, 2021, 01:00:12 PM
Of course, it has some impact, but it is so negligible with other factors that affect the climate and the environment. If we were to shut down all the mining farms at this point, would that mean anything in total for the climate? Of course not, but if we taught people not to leave electronic devices on standby how much energy would be saved and not wasted literally in vain?
Not much, I daresay. Most electrical appliances are actually well designed to be consuming as little power as possible. Your study was from 2004. But, that's not the point.

I totally agree that Bitcoin won't be the significant factor in climate change. However, the rhetoric is that, mining is a frivolous and wasteful use of electricity. The research aims to find out how much electricity Bitcoin really consumes, I'll be happy to have something to show the skeptics and it would provide a way better visualization, and also a far more accurate estimation than most other sources.


I wouldn’t say I’m cynical, I just don’t see the point in going in this direction at all when it comes to researching the impact that BTC has on climate and the environment. The footprint that BTC leaves in that segment is so small and insignificant at the moment that I think is not worth discussing at all.
How exactly would any one be able to determine how much electricity Bitcoin uses? Such research aims to determine the energy consumption, just see their FAQ (https://cbeci.org/faq/). If anything, research proves that Bitcoin doesn't contribute too much to climate change. Objective research is necessary; no one would really have a decent gauge of the energy consumption if research like this doesn't exist. No one cares if people say Bitcoin doesn't contribute to climate change, they want concrete data, which is provided by the research in the thread.

I don't think research are necessarily pointless, if at all. No matter how useless people think they are, the data collected and/or the conclusion drawn can be used as a reference in other papers.
Pages: « 1 ... 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 164 165 166 167 168 169 ... 463 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!