Bitcoin Forum
June 08, 2024, 12:26:31 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 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 ... 590 »
2981  Bitcoin / Bitcoin Technical Support / Re: Bitcoind Keeps crashing on: June 10, 2017, 06:07:56 PM
Bitcoind shouldn't be crashing. Instead of making bitcoind restart on every crash, it would be better to figure out why it is crashing in the first place.

Can you please post your debug.log file?

One way to keep bitcoind up is to make a cronjob that just starts bitcoind. If it is running, the cronjob will do nothing since you can't have two bitcoinds running from the same datadir. If it is not running, the cronjob will start it.
2982  Bitcoin / Bitcoin Technical Support / Re: Brainwallet - BIP39 - seed words - backup phrase - same 12 words for all wallets on: June 10, 2017, 05:59:03 PM
What are you trying to do?

If you are thinking you can just make your own seed by thinking of 12 "random" words, it won't work. BIP 39 is much more than just a bunch of random words, it is an encoding for a random number. It includes a checksum, so you can't just think if 12 random words and call that a valid BIP 39 mnemonic. It is far better to use a wallet that supports BIP 39 to generate the mnemonic for you since they actually generate the random number first and then encode it as a mnemonic.
2983  Bitcoin / Development & Technical Discussion / Re: Removing the nonce field for ASIC resistance and preventing selfish mining. on: June 10, 2017, 08:08:59 AM
That's a good point about the coinbase, I almost forgot about that. Does it actually have a purpose or can we get rid of that in this hypothetical?
You could get rid of it in this hypothetical. It doesn't serve a consensus purpose, but it does help to track who mines a block as miners usually will put some identifying text in the coinbase.

Conjecturing on we can, doesn't this make the bitcoin algorithm ASIC resistant?

Although you say that ASIC resistance is based on the hashing algorithm, I'd argue that the calculation of the merkle root is in itself a giant hashing function. If we use the merkle root as the only source of randomness, then I get the following calculations:

If we take the current hash rate of about 5,000,000 TH/s and multiply that by 10 minutes we get, 5,000,000,000,000,000*10*60 Hashes.
No, that is not ASIC resistance. ASIC resistance means that the PoW algorithm (in this case sha256d) is hard to implement on an ASIC. Merkle root calculations are also SHA256d; the data for calculating a merkle root can just be passed through the same SHA256d hashing chips on an ASIC. The processing that is required to do this is also very minimal and could be done on an FPGA before being sent to the chips to be hashed. I don't think the actual hashing chips themselves are even the ones that change the nonce. IIRC the onboard FPGA processes the header and then sends it to the hashing chips to actually be hashed. That FPGA would just need to process a little bit more to make the merkle root.

Which would mean that the number of different merkle roots we need can be calculated via log2(5,000,000,000,000,000*10*60) = 61.3796682. Meaning that each block would require at least 61 transactions for the miner to find a block.
We cannot rely on there always being some minimal number of transactions to be included into a block except for the coinbase transaction. While requiring a minimal number of transactions would solve several issues, I don't think that should be done as we need to consider the scenario where few transactions are being made. The network would grind to a halt if for some reason transactions are not being made (could be from Bitcoin falling out of use and becoming an even more niche thing, some layer 2 solution makes onchain transactions few and far between, some vulnerability is discovered that people stop making txs but the blockchain must go on, etc.).
2984  Bitcoin / Development & Technical Discussion / Re: Removing the nonce field for ASIC resistance and preventing selfish mining. on: June 10, 2017, 06:33:11 AM
Difficulty and nonce go hand in hand, difficulty tells the nonce how many 0's to have.
No, that's the nBits field. The nonce is the field that is changed in order to find a valid hash as it is more efficient than changing the other fields.



First of all, this would require a hard fork.

Secondly, removing the nonce field won't really help. Miners can just keep changing something in the coinbase transaction which can effectively act as a nonce. In fact, since the coinbase part of a coinbase transaction can include whatever data a miner wants, they could just move the nonce into the coinbase transaction and basically continue as they do now. It would add an additional 13 hashes for each block header hashed so it effectively reduces the network hashrate to 1/13 of the current hashrate. However, that won't suddenly make CPU or GPU mining viable again and it most certainly does not make Bitcoin ASIC resistant. ASIC resistance is in the hashing algorithm itself, not the data that is being hashed.

Since miners can and will essentially move the nonce into the coinbase itself, selfish mining is not effected at all. All of the other transactions in the block would remain the same and only the coinbase transaction would change. That is enough to change the merkle root.
2985  Bitcoin / Development & Technical Discussion / Re: "Operation not valid with the current stack size" when spending from 2of3 on: June 09, 2017, 11:20:26 PM
Just an update on this:

The transaction is actually partially signed, but it isn't very obvious that it is with the errors showing up in the output. There isn't actually any issue here except that it looks scarier than before.
2986  Bitcoin / Bitcoin Technical Support / Re: Send all Coins, transaction is stuck, what to do? on: June 09, 2017, 08:57:01 PM
What wallet software are you using? Please read https://bitcointalk.org/index.php?topic=1802212.0
2987  Bitcoin / Development & Technical Discussion / Re: Blockchain download on: June 09, 2017, 08:54:40 PM
It would require people to trust that you are providing them the correct blockchain. If they were to verify the blockchain after downloading it from you, it wouldn't be anymore help than you hosting a node on that server and people just connecting to your node too.
2988  Bitcoin / Bitcoin Discussion / Re: Bitcoin Core 0.14.1 Released on: June 09, 2017, 08:53:25 PM
What happens when it reaches a terabyte in size. What happens when it reaches 2 and then 10 terabyte. At some point the problem is not solvable. Surely someone is working on a way to truncate the block chain or some sort of solution. What if someone new wants to get the bitcoin wallet and load it from scratch. Its going to take a 6 months to load it into the PC. This is crazy...
First of all, technology isn't stagnant. Better computing power and storage will come even as the blockchain grows larger. There certainly are ideas for shrinking the blockchain, but they all require a hard fork and research is still being done about that.
2989  Bitcoin / Armory / Re: DB version mismatch. Use another dbdir! on: June 09, 2017, 04:30:50 PM
You mean the whole transaction database, 100gb ?
Yes. Armory's database has both been significantly shrunk (down to only a few GB at most) and completely redesigned, so the old format is old, unused, and incompatible.
2990  Bitcoin / Armory / Re: Armory 0.95 is out on: June 09, 2017, 05:21:17 AM
Hi
I've used Armory for years. Lovely software Smiley  Since I have upgraded to 0.96.0 (on Windows), one of my wallets behaves weirdly. To be specific: when I click the 'Receive Bitcoins' button, it does exactly nothing. When I have other wallets open, and I click that button, it correctly shows the relevant popup window. (the 'New Receiving Address' window)
Can you advise? Is this a known bug? Is there a work around?
Cheers Dave
First, post in the right thread (hint: this one isn't it. check the stickies). Also post the Armory log files. You will probably also want to use the 0.96.1 testing build 2 as that has many bug fixes for 0.96.
2991  Bitcoin / Development & Technical Discussion / Re: fees? on: June 09, 2017, 05:20:10 AM
also find this quite ridiculous  Angry
how are old transactions cheaper when btc was less inflated and there were less miners  Roll Eyes
Transactions were cheaper because there were less transactions. Blocks weren't full so there wasn't any fee pressure and thus you didn't really have to pay any fees. That has nothing to do with inflation or miners.

if i'm not wrong, one of the aims of cryptos were to reduce to cost of transactions but now it's getting almost on par or even higher than traditional currency transaction fees. Huh
You are wrong. The purpose of creating Bitcoin was to create a money system which did not rely on a central authority. It was not to create a global currency that had cheap transaction fees.
2992  Bitcoin / Armory / Re: DB version mismatch. Use another dbdir! on: June 08, 2017, 10:29:17 PM
If you are upgrading from any Armory version earlier than 0.95, you will need to build a new database as the database format changed. To do this, just go to the Armory datadir and delete the folder named "databases". Then start Armory.
2993  Bitcoin / Development & Technical Discussion / Re: How to signal support for BIP 148 ? on: June 08, 2017, 10:27:34 PM
Thank you very much achow101.  Smiley

O.k. the command is only sending a signal if I understand this correctly. So, how to support it on August 1st?
You will have to run a modified version of Bitcoin Core which enforces the BIP 148 rules. Those binaries can be found here: https://github.com/UASF/bitcoin/releases/tag/v0.14.1-uasfsegwit0.3
2994  Bitcoin / Development & Technical Discussion / Re: How to signal support for BIP 148 ? on: June 08, 2017, 05:39:55 PM
But why bitcoin-cli stop && sleep 5 && bitcoind  Huh
This doesn't make sense.
The uacomment can only take effect after bitcoind has been restarted. The bitcoin-cli stop tells bitcoind to stop. The sleep 5 is to wait 5 seconds for bitcoind to actually shut down, and bitcoind is for starting bitcoind again.

However you are not using bitcoind so this won't work for you. Just do the first command, stop Bitcoin Core from the GUI, and launch it again once it is fully shut down.

How can I check if the BIP 148 support signal was correctly set?
In Bitcoin Core, go to Help > Debug Window and you will see a field for the User Agent. From there you can see that the User Agent Comment has been set to support BIP 148. Note that this does not mean that you are actually supporting BIP 148 and will enforce its rules. You are merely saying that you will support it before the activation deadline of August 1st.
2995  Bitcoin / Development & Technical Discussion / Re: What does the rc1, rc2, ... in the version number of core mean ? on: June 08, 2017, 04:26:41 PM
Thank you cr1776. This makes it clear to me.    Smiley

If I want to compile 0.14.2, lets say in some weeks, is it possible to just run the usual

./autogen.sh
./configure
make
sudo make install

or do I have to delete 0.14.1 before this procedure on my Linux System? So my question is how to "upgrade" the Core Client to a newer version.
I installed the Core only on fresh systems so far.
You don't have to uninstall or remove any of the previous files. Make install will overwrite the old ones with the new ones automatically.
2996  Bitcoin / Bitcoin Technical Support / Re: I'm in with BIP148 Segwit Node, But No Relay So Far! on: June 08, 2017, 04:21:41 PM
my node is now just making upload, it that normal?
What do you mean by "making upload"?
2997  Bitcoin / Armory / Re: Help on Armory new Install on: June 08, 2017, 04:18:26 PM
Thanks achow101, much appreciated. I did come across that solution on several forums, but I was wondering if it is at all possible to setup both Bitcoin Core and Armory on a new much faster machine and have my profile display correctly there ? I have setup Armory on a machine before knowing about Bitcoin Core and transfered the money, and then figured out it needs ages, and I don't think the current machine is capable of syncing in acceptable time.

I transferred from blockchain to Armory(offline) giving it a specific armory bitcoin address, so my question is; is there anyway I could install bitcoin core and armory elsewhere and hope after syncing that it would detect my balance correctly i.e. transferring my armory profile to a new machine ?
There isn't such a thing as an Armory "profile". I assume what you are talking about are your Armory wallets.

You can copy the Armory wallet files from one machine to another and use them in another install of Armory. You can get those files by going to Armory's datadir and copying the files with the .wallet extension.
2998  Bitcoin / Bitcoin Technical Support / Re: I'm in with BIP148 Segwit Node, But No Relay So Far! on: June 08, 2017, 08:45:39 AM
Quote from: ardacik link=topic=1956475.msg19432953
But the thing is blockchain.info captures all transactions right? If so they must be able to capture my ip address too? If i have connections on my node, that means i'm relaying some transactions. So which are they? I want to see them:)
No, that is completely incorrect. Transactions have nothing to do with IP addresses. Blockchain.info is just one node among many thousands. They are not the actual bitcoin blockchain nor are they special in any way whatsoever.

Bitcoin uses a gossip protocol; when someone makes a transaction, they send it to the nodes they are connected to who then send the transaction to other nodes that they are connected, and so on and so forth. The process of receiving a transaction from one node and sending it to the other nodes you are connected to is called relaying. None of that involves IP addresses​ except for opening the connection between two nodes, which is done before any relaying happens and typically stays open after a transaction has been relayed.
2999  Bitcoin / Bitcoin Technical Support / Re: I'm in with BIP148 Segwit Node, But No Relay So Far! on: June 08, 2017, 07:50:10 AM
So just TCP 8333 is opened not UDP.. Should both of them must be enabled?

If so how can i enable UDP on ubuntu ssh?
What you should be checking is your router, not the firewall on your computer. Since the program opens up the port, you shouldn't need to do any extra configuring on the computer unless you have specifically set up such firewalling rules.

Only TCP is necessary.

https://blockchain.info/ip-address/195.244.58.186

Just like that. Other bitcoin nodes are giving some relay on blockchain networks. But mine does not
The nodes that are connected to blockchain.info is not the definitive list of all nodes. Bitnodes.21.co's list of reachable nodes likewise is also not definitive as their crawler also doesn't necessarily reach all nodes (although it is designed to do that).B

lockchain.info's "relayed by" field is completely irrelevant and useless. They only show the node that is connected to them that first relayed the transaction to them. Even if your node is connected to theirs (and I highly doubt it, they only have a hundred or so nodes connected), you won't necessarily have anything listed for "relayed" if all of the other nodes they are connected to relay the transaction to them before you do.

If Bitcoin Core reports that you have more than any number of incoming connections, then you are accepting incoming connections and are fine. You don't have to be listed on any site like bitnodes in order to be accepting incoming connections.
3000  Bitcoin / Bitcoin Technical Support / Re: I'm in with BIP148 Segwit Node, But No Relay So Far! on: June 08, 2017, 06:55:33 AM
What do you mean by "no relays"?

You are relaying blocks and transactions to all nodes that you are connected to, regardless of whether the connection is inbound or outbound.

What you probably mean is that you can reach your node, so you are not accepting incoming connections. That, in itself, is not an issue. In order to accept incoming connections, you need to open up port 8333 on any firewalls you have (computer, router, etc.). That is all you need to do.
Pages: « 1 ... 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 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 ... 590 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!