Bitcoin Forum
June 26, 2024, 09:21:01 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 [295] 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 ... 590 »
5881  Other / Meta / Re: Another spam bot on: August 17, 2016, 02:09:30 PM
Notified Mitchell and he'll probably add it to his bot.
Thanks!

We have an anti-spam bot? Does it handle all spams or just certain ones? The bot posts on the speculation section sometimes doesn't get deleted for hours.
It's a pretty dumb bot that just looks for the same spam posts, e.g. the knc spam post. So long as the text remains the same, it will remove such posts.
5882  Other / Meta / Another spam bot on: August 17, 2016, 01:45:48 PM
Recently I have been seeing a newly created account creating a post with just the words
Quote
Quantum code review
and that being a link to somewhere (some linkedin page IIRC). The title of the post is usually nonsense.

Can we get the anti-spam bot on this? It's getting annoying to report those every single time.

For example: https://bitcointalk.org/index.php?topic=1588435.0;topicseen#msg15951451
5883  Bitcoin / Development & Technical Discussion / Re: Quick stupid question on OP_NOTIF on: August 17, 2016, 12:51:23 PM
That is correct, you can begin the block with OP_NOTIF.
5884  Bitcoin / Development & Technical Discussion / Re: How to get tx hash in someone block? on: August 17, 2016, 03:24:03 AM
Thank you very much. it's very explicit。
The last question:
how to get the block heigth number?
Thank you.
You don't. There actually is no way to request a block by height over p2p in Bitcoin. In order to do so, you need to somehow get the hash. Really the only way is to start from the genesis block and start requesting every block and keeping count of what height you are at.
5885  Bitcoin / Development & Technical Discussion / Re: Block disappeared - wtf? on: August 17, 2016, 01:17:20 AM
What node does your blockchain scanner query? What software is that node?

There are a few things that I think could have happened here. You may have somehow caught a fork. The block that you saw disappear could have been part of a fork that was subsequently invalidated by a longer chain. Or it is possible that you received an invalid block. Since blocks are sent headers first, it is possible that the header was good, but something in the block was wrong, so when it was validating the block, it failed and removed the block. But because it received the header first, it originally added it to the blockchain before removing it.
5886  Bitcoin / Armory / Re: BTC for Goatpig's work on: August 16, 2016, 08:47:48 PM
If you have some web design in you, I would consider setting up a gh-pages branch and merge in yours PRs. This project could definitely use a webpage. It would be pretty cool if it was community managed too.
You should definitely do that. I setup a github pages site for Armory a while ago. Take a look http://www.achow101.com/BitcoinArmory/ and https://github.com/achow101/BitcoinArmory/tree/gh-pages. It hasn't been updated, but I can update it.

We'll have to figure out a domain first though.
How about btcarmory.org? Currently available on godaddy
5887  Bitcoin / Bitcoin Technical Support / Re: Transaction stuck, blockchain.info can't find it on: August 16, 2016, 02:58:22 PM
It's possible that your transaction is a double spend because you are not synced. This would make your transaction invalid and thus rejected.

You cannot cancel a transaction. Once it is broadcast, you cannot abort it.

However, you can remove the transaction from your wallet and resend it. First you need to sync your wallet. You can enable pruning to save space.

To enable pruning, add
Code:
prune=550
To the bitcoin.conf file in your data directory.

Then follow the instructions at http://www.achow101.com/2016/07/Bitcoin-Core-Troubleshooting#stuck-tx to fix your problem.
5888  Bitcoin / Bitcoin Discussion / Re: Bitcoin Core version 0.12.1 released on: August 16, 2016, 02:13:48 PM
What is the meaning of BIP? Anyone can help me please
It means Bitcoin Improvement Proposal. Theses are proposals to change something in the bitcoin protocol.
5889  Bitcoin / Development & Technical Discussion / Re: Question about hash_serialized, returned by gettxoutsetinfo on: August 16, 2016, 12:54:45 PM
I'm not entirely sure how it is calculated, but the functions for getting all of that data is in the code at https://github.com/bitcoin/bitcoin/blob/37d83bb0a980996338d9bc9dbdbf0175eeaba9a2/src/rpc/blockchain.cpp#L633
5890  Bitcoin / Development & Technical Discussion / Re: How to get tx hash in someone block? on: August 16, 2016, 12:50:41 PM
Thank your answer, according your answer, i get what i want.
i have other question,
memkleblock: i know , when i send "getdata" message to node, and node maybe reply the "memkleblock". but , i don't know how to set inv data struct in "getdata" message,
1, type, I set 2 or 3?  2 means MSG_BLOCK, 3 means MSG_FILTERED_BLOCK;
You need to set inv type 3, MSG_FILTERED_BLOCK. But in order to do so, you first must set a bloom filter using filterload.

2, hash, I set block hash or memkle hash?
Block Hash.

the whole stage of "memkleblock" as follow:
"?" -> "inv"-> "getdata"->"memkleblock".
when start, what message should I send to node?
You first do the handshake with the version messages. Then you have to set a bloom filter using filterload. Then you send a getblocks message and the node returns you an inv. Then you can send a getdata and you will get a merkleblock in response.

BTW, it's merkleblock and merkle root, not memkle.
5891  Economy / Service Discussion / Re: Want to join a signature campaign on: August 15, 2016, 10:35:23 PM
If it so hard use search before creating topic. This question was already answered hundreds of times. There are 4 active campaigns which accept newbies. And your post quality isn't 74.47%. These stats only based on your post length, not on content of your posts.
So how can I check my post quality ??
Post quality is subjective. To have high post quality, most of your posts must be relevant to the thread, informative, and contributes to the discussion. Posts that are considered spam are usually very short (but not always), contains nothing meaningful, or repeats what everyone else in the thread has already said.

In order to post with good quality, you must first read the thread you want to post in, then consider whether the post you are making contributes to the discussion. If it does not contribute, don't post. If you are posting for the sake of posting in order to increase your post count, don't post.
5892  Bitcoin / Armory / Re: Armory 0.95 testing phase on: August 15, 2016, 09:44:16 PM
Not sure if this was already reported.

I don't see any of my addresses having a balance when I look at the wallet properties. But I can still send (at least fairly sure that I can) Bitcoin. But coin control doesn't work.
5893  Bitcoin / Armory / Re: BTC for Goatpig's work on: August 15, 2016, 08:59:56 PM
If you have some web design in you, I would consider setting up a gh-pages branch and merge in yours PRs. This project could definitely use a webpage. It would be pretty cool if it was community managed too.
You should definitely do that. I setup a github pages site for Armory a while ago. Take a look http://www.achow101.com/BitcoinArmory/ and https://github.com/achow101/BitcoinArmory/tree/gh-pages. It hasn't been updated, but I can update it.
5894  Bitcoin / Development & Technical Discussion / Re: Client-side paper wallet generator with seed? on: August 13, 2016, 09:03:12 PM
Thanks I'm kind of new with this, so there's no workaround? once you lose your paper wallet's private key you lost if forever?
Yes.
5895  Bitcoin / Development & Technical Discussion / Re: Client-side paper wallet generator with seed? on: August 13, 2016, 05:48:37 PM
The seed is for a heirarchical deterministic wallet. It is used to generate multiple keys. Paper wallets are just one key, thus there is no seed. If you want some sort of "seed" for a private key, then you need to use a brainwallet. However, I highly recommend against this since brainwallets are insecure, especially when the user has to think of the word to use as the seed.
5896  Bitcoin / Development & Technical Discussion / Re: How do I hide or delete old transactions in my wallet? on: August 13, 2016, 01:49:09 PM
So that list is there forever, and it cannot be gotten rid of unless I download a whole new wallet copy?
The list is there forever because it is a list of all of your transactions. Without it, you wouldn't be able to send any Bitcoin because the software wouldn't know what it can spend from.

If that is the case I will have to be careful of what I type in there for comments.
You can change those. Just go to the transactions tab and right click on a transaction. Then choose the option for "Edit label".
5897  Bitcoin / Development & Technical Discussion / Re: Open Source Blockchain Explorer on: August 13, 2016, 03:46:27 AM
There's also abe: https://github.com/bitcoin-abe/bitcoin-abe
5898  Other / Beginners & Help / Re: Please HELP!!!The lost bitcoins on: August 12, 2016, 02:55:35 PM
Use the site localbitcoins.com.When you try to put bitcoins on one wallet,somehow there was a substitution and they went to another wallet.Where it came from,can't understand it,use copy-paste,but I this address is not familiar.Tell me how to get bitcoins or how to get access to the wallet or to find the owner of the purse, or at least to know where and when it was created.Still not a small sum of 2.9 BTC.This purse is clean,neither one transaction nor at the input nor at the output.And what all you can do in this case?Support says my mistake when entering an address, or a rootkit.Everything checked out,the computer net and typing errors could not be.Thanks in advance!BTC wallet: 14zpdrA1dh44AW1yXX2dx5PBiQojVyy4s6 ;Hash: 3af1a0e9731e86ffe8b9d7b0a801d32240ce294f97c8d27bf34fdbeb4d077023 . Cry
That transaction is already confirmed, there is nothing you can do about it. Bitcoin transactions are not reversible.

Make sure that your computer has no viruses. There are viruses that exist that modify your clipboard so that the address that it pastes is an attackers. These viruses can be hard to detect though.
5899  Bitcoin / Bitcoin Technical Support / Re: how to avoid coins being sent to a change address? on: August 12, 2016, 02:29:33 PM
the security part, and the post from DannyHamilton made me decide to not proceed with setting a manual change address. but when it comes to the privacy aspect, the change moving into a different address will remain there for quite a long time if you don't use the main address. so if i choose to spend 0.50btc where my main address contains 0.45btc, and the change address 0.05btc, will they both start moving at the same time, and thus be visible and link the change address to my main address as it will be too obvious? or is it also possible to just spend the amount you have in your change wallet where the coins in the main wallet remain untouched?
You can do that using coin control to select the inputs that you want to spend. Otherwise, the wallet will automatically choose which inputs to spend and it may end up linking your addresses.
5900  Bitcoin / Bitcoin Technical Support / Re: how to avoid coins being sent to a change address? on: August 12, 2016, 01:18:37 PM
It is highly recommended that you do not do this as address reuse is not recommended.

If you are sure that you want to reuse change addresses, go to Settings > Options and then the Wallet tab. Check the box for "Enable coin control features". Then click OK. When you go to send, you will now see a box for Coin Control. Check the box for "Custom Change address" and then enter the address that you want to use as your change address. Then send your Bitcoin and the change will go to wherever you specified.

can you elaborate on why it isn't recommended to use my main wallet as change destination? is it more privacy related, or has it more to do with the security? and thanks, i found the option to set a custom change address. i haven't done it yet as i will wait for your reply whether or not it will harm the security of my address.
It isn't recommended because it can both hurt your security and your privacy. By reusing addresses, people who pay you can easily see how much money you have. It becomes fairly easy to track who you are paying and how much. New change addresses also makes it possible to say that the change was going to someone else and not back to yourself; it allows for plausible deniability, something you can't do with reusing addresses.

For security, using new addresses and never reusing addresses will help protect against any attack that would break ECDSA (any attack in which a private key can be found from a public key in a meaningful amount of time). When you spend, you are really spending to the hash of a public key. Once you spend the Bitcoin from that output, you will be revealing the public key in the spending transaction. This makes it potentially vulnerable to be cracked. However, if you always use new addresses, then your Bitcoin is still safe as by that time the public key is revealed and the private key cracked, the Bitcoin should already have been spent.
Pages: « 1 ... 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 [295] 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 ... 590 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!