Bitcoin Forum
July 02, 2024, 05:30:30 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 ... 590 »
3361  Bitcoin / Development & Technical Discussion / Re: Structure of cryptocoin-source on: April 28, 2017, 01:13:31 PM
I'm quite new to crypto, and i start studying/develop some tool to ease the trading/mining.

Can someone more expert than me tell us How a coin i structured?

I mean the "high-level" chart for designed/develop a coin and where that info are stored in the source.
It depends on what version of the Bitcoin Core source that the coin you are working on forked from. The names of each file is fairly self explanatory and should be obvious as to what it does. The only not so obvious one is main.cpp. main.cpp contains all of the processing of network messages and validation of blocks and transactions. If they forked from Core 0.14.0+, main.cpp does not exist. Rather it has been split into validation.cpp and net_processing.cpp. You can probably guess what the stuff in those files do.

Specifically:

1) Where is the difficulty retarget system?
It is either located in main.cpp or pow.cpp, depending on the version of Bitcoin Core that the coin was forked from. The name of the function is CalculateNextWorkRequired.

3) Where are the "hot" info like : number of coin produced on time, algo, stake, ecc ecc
Those are the blockchain parameters, hence they would be located in the chainparams.cpp file.
3362  Bitcoin / Development & Technical Discussion / MOVED: where is coinbase parameter in breadwallet open source ios version? on: April 28, 2017, 01:04:53 PM
This topic has been moved to Trashcan.

https://bitcointalk.org/index.php?topic=1890625.0

Duplicate
3363  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 28, 2017, 03:17:40 AM
Reading the patch thread the remote kill is needed if someone confiscates the mining units or steals em.
Seems a bit overkill though but in the name of coin security someone would appreciate the feature and phone home does the job.
The problem I have with this explanation is that the way the kill switch was implemented is way more complex and convoluted than it needs to be. It sounds like what they had done was fully implemented the feature but not the rest of the service they were going to provide, but they implemented this feature in such a weird way. The phone home code sets a global variable which is then read by another completely unrelated thread which sets another global variable which is what then actually does the mining shutdown part when the machine requests work. That is just way more complicated than it needs to be. The full feature could have just been implemented in the same function that they wrote for the phoning home, but instead it sets global variables used by other functions and threads.
3364  Bitcoin / Armory / Re: Armory address messed up? on: April 28, 2017, 01:51:38 AM
Using 0.95.1 for Armory and Bitcoin core 0.14.1. Ive tried running core in the background and letting Armory run it and get the same results. However, I just noticed Armory says 451038 blocks loaded while there should be 463813. How do I fix this? My Log: https://pastebin.com/n7eS3E9Y
Armory 0.95.1 is incompatible with Core 0.14.1. You should either downgrade Bitcoin Core to 0.13.2 or you can use the latest Armory 0.96 testing build. Downgrading or upgrading is easy. Just download the installer and run. No data will need to be moved and nothing else needs to be done; the installer will overwrite the binaries with new ones.
3365  Bitcoin / Electrum / Re: How to find my bitcoins on: April 27, 2017, 11:33:10 PM
Hello, thank you for your answers, this is the first time I do these exchanges so I do not understand everything that needs to be done. In "blockchain.info" I do not know what to look for.
My address of "Electrum" that I pasted on the other site is:
351KGLye7YUUmRsM1eQx6ZceFen7g1CwLJ

thank you
The website is a block explorer. They let you search for all transactions related to a transaction id, the details of a transaction, the details of a block, among other things.

This is the link on blockchain.info for details about your address: https://blockchain.info/address/351KGLye7YUUmRsM1eQx6ZceFen7g1CwLJ. As you can see, they know of no transactions related to your address which means that whoever you bought Bitcoin from either did not send any or the transaction that sent you Bitcoin did not propagate well and thus you and blockchain.info don't know about it. I'm betting it is on the former. I think you have been scammed.
3366  Bitcoin / Electrum / Re: How to find my bitcoins on: April 27, 2017, 10:47:45 PM
For one thing, that service seems rather scammy and does not look particularly trustworthy. You may have been scammed.

If you were not scammed, they should have told you the transaction id of the transaction that sends you the Bitcoin. You don't need to do anything to receive it; you don't even need to have your wallet online or synced. To see whether you received the Bitcoin, lookup your address in a block explorer like https://blockchain.info/. It will tell you if there are any transactions to that address. If there are, make sure that your wallet is fully synced with the network.

If you want us to help, you will need to post the address that you had them send the Bitcoin to.
3367  Bitcoin / Bitcoin Technical Support / Re: Help unconfirmed transaction on: April 27, 2017, 10:44:27 PM
Your transaction spends from https://blockchain.info/tx/82dffd62d1df6d3f2357f7182f945ad456884c2b0033bca1aae0fd95935e02d3 which is also unconfirmed. Your transaction cannot confirm until this previous transaction confirms. Both transactions pay a fairly low transaction fee, only ~120 sat/byte whereas the current recommended transaction fee is 240 sat/byte according to https://bitcoinfees.21.co/.

Since you probably don't control the unconfirmed transaction which your transaction depends on, there isn't much you can do. If you do control it, you do have some options, but that also depends on the wallet software you are using.

Also, read https://bitcointalk.org/index.php?topic=1802212.0
3368  Bitcoin / Bitcoin Technical Support / Re: Real confused about transactions on: April 27, 2017, 10:13:27 PM
Have you received any other Bitcoin before or after this happened? Have you sent any other Bitcoin before or after this happened?

What version of Bitcoin Core are you using? Is your wallet an HD wallet (i.e. was it created with 0.13.0+)?
3369  Bitcoin / Bitcoin Technical Support / Re: lost bitcoin wallet. on: April 27, 2017, 09:19:00 PM
Most wallet files are named something like "wallet.xxx" or "xx.wallet". If you used Bitcoin Core, you would have a wallet.dat file. Other wallet software will name differently.
3370  Other / Beginners & Help / Re: how to get bitcoin w/o mining and doing what ever i can to make bitcoin? on: April 27, 2017, 07:22:41 PM
alright thanks, btw are mining pools good when i pay for better hardware on their site?
using this: https://www.startminer.com
Those are not mining pools, those are cloud mining. Cloud mining services are generally scams and you should avoid them like the plague. If there were actually profit to be made off of mining with their hardware, why would someone then proceed to rent out their hardware to others instead of mining for themselves?
3371  Other / Beginners & Help / Re: how to get bitcoin w/o mining and doing what ever i can to make bitcoin? on: April 27, 2017, 07:04:06 PM
Bitcoin is money. You earn Bitcoin just like you would with any other way you would earn money.

You won't get Bitcoin for free. While it seems that faucets and micro earnings are just giving away money for free, you are actually wasting your time on getting nothing. The payments are much too low to amount to anything, and if you do amass enough, the transaction fee required to spend the Bitcoin is simply too large.

Earn Bitcoin by doing whatever else you would do to earn money. You can:
  • Sell goods in exchange for Bitcoin
  • Offer a service in exchange for Bitcoin
  • Beg for Bitcoin and hope that people give you some out of the kindness of their hearts (against forum rules, don't do it here)

With regards to mining, you cannot mine with CPUs or GPUs. You need specialized mining ASICs and cheap electricity in order to even make a profit.
3372  Other / Meta / Re: Profile name on: April 27, 2017, 04:57:27 PM
Unless you are a staff member, donator, or VIP member, you cannot change your profile name whenever you want. You will need to ask one of the admins to change it for you, but they usually do not grant such requests.
3373  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 27, 2017, 02:17:13 PM
the claim is that 70% of the hashrate is using Bitmain's hardware.

proof of claim? please dont refer to reddit or twitter
I have no proof of that claim, nor do I claim that it is true. I am simply stating that that is what people are saying, not that they are saying that Bitmain directly controls that much hashpower (which is what you said).
3374  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 27, 2017, 02:11:34 PM
if you think jihan owns the whole 9time of posting) 67% nay sayer/abstainers.. then maybe its time you done some research
No one claims that Jihan directly controls 70% of the hashrate. Rather the claim is that 70% of the hashrate is using Bitmain's hardware. With this vulnerability, they (or anyone who can MITM or DNS hijack) can stop all of that hashrate from mining.
3375  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 27, 2017, 02:04:02 PM
Bitmain has officially reponded: https://blog.bitmain.com/en/antminer-firmware-update-april-2017/

They claim that it was intended to be a feature but was never completed. The code in question has been removed from some of the publicly available sources on Github and in the firmware update they published.
3376  Other / Beginners & Help / Re: Hi to everyone, im new and need little help! on: April 27, 2017, 01:36:41 PM
1) Is a good moment for start to mine?
2) I have a good pc with 2x GTX Asus 1070 and a GTX 750ti, can i mine good or not?
You will not be able to mine Bitcoin. The difficulty of Bitcoin mining is too high for CPU or GPU mining. You need to use specialized mining ASICs in order to actually mine a substantial amount of Bitcoin. To even make a profit, you also need very cheap electrcity.

3) I need to start from some altcoin and trade for bitcoin?
If you actually want to do GPU mining, you need to mine altcoins, not Bitcoin.
3377  Bitcoin / Bitcoin Technical Support / Re: [HELP] Bitcoin Core application requested the Runtime to terminate on: April 27, 2017, 01:30:55 PM
What is the right/proper or advisable way on upgrading? Should I uninstall first the previous version before installing the latest version or the other way which is installing the latest version without uninstalling the previous one?
Just download the installer and run it. There is no need to uninstall previous versions; the new version will overwrite the old one. No data will be lost and you will not need to redownload the blockchain. As usual, you should backup your wallet file just in case, but there shouldn't be anything that effects that.

Sorry but I don't know how to locate the log files.
All of Bitcoin Core's data (including log files) are at %appdata%/Bitcoin. Type that into the bar for the file explorer and it will take you to the datadir. The debug.log file is the file that we need to see.

You can also get the debug.log file by going to Help >Debug Window. In the main Info tab, there is a button that will let you open the debug.log file too. It also gives you the full path to the datadir.
3378  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 27, 2017, 04:05:32 AM
the first thing that came to my mind after reading this was a question! "Why now". why is it that these days, all these news about mining, miners' equipment, backdoor, boost, etc are coming out. ASICs weren't created yesterday!
A lot of it is probably due to people wanting to find as many ways to discredit someone else, i.e. some Core supporters looking to discredit BU, Bitmain, etc. and some BU supporters looking to discredit Core. Some of it is likely from projects that were started several months ago but only now reached their conclusion (like reverse engineering an asic and related closed-source firmware for asicboost as that takes a long time).
3379  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 27, 2017, 03:45:43 AM
Achow, are you saying antbleed is not miner link at all?  But completely different code?

It may be related to minerlink, but it itself is not governed by minerlink. It does its own entirely separate thing. However it could potentially be used by minerlink to remotely stop an antminer from mining, but the way that they implemented that is rather odd and convoluted so it seems unlikely. Perhaps it was meant for something else related to minerlink but was never completed.
3380  Bitcoin / Bitcoin Discussion / Re: Antbleed: A remote shutdown backdoor in antminers on: April 27, 2017, 03:28:42 AM
like someone said... very old news,

minerlink is disabled by default...
As I said earlier, this is completely unrelated to minerlink except for the fact that it shares a domain name. The phone home code runs regardless of user input or settings.

... and most miners only allow outbound traffic from their rig to go to pool stratum anyway, not to Bitmain or anyone else.
Sure larger mining farms might have something like that, but for the casual "I have have cheap electricity so I got a couple R4's/S9's" miner, I highly doubt they have such settings. Those who still mine from home with antminers are vulnerable. Additionally, most networking stuff by default doesn't restrict outbound connections, so unless the miner was specifically concerned about something already on a machine inside the network sending something out of the network, this default would not be changed.
Pages: « 1 ... 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 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 ... 590 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!