Bitcoin Forum
July 02, 2024, 10:37:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 ... 590 »
4141  Bitcoin / Bitcoin Technical Support / Re: WIF Checksum Checking on: February 07, 2017, 03:11:30 PM
I think this is what you are looking for: https://github.com/btcsuite/btcd/blob/ab0f30c00d17bb7766c06174d77661443df08973/chaincfg/chainhash/hashfuncs.go
4142  Bitcoin / Bitcoin Technical Support / Re: Transaction with low amount is stuck on: February 07, 2017, 02:54:04 PM
You have a few options here. You can wait and hope it confirms, wait for the transaction to be "forgotten" by the network, attempt a double spending transaction that pays a higher fee, or ask a miner to confirm it for you.

For the third option, we need to know what wallet software you are using.

For the fourth option, you can contact the users Quickseller and macbook-air.
4143  Bitcoin / Bitcoin Technical Support / Re: Need Help Please *Unconfirmed Transactions* on: February 07, 2017, 02:51:12 PM
Thank you sir for all your help i will keep this in mind, my transaction has 3 confirmations now but i need at least 6 confirmations to be able to withdraw, i guess i just have to keep waiting
The only part that depends on the fee is the first confirmation. Each confirmation after the first just means that that many blocks - 1 have been built on top of the block which includes your transaction. Those confirmations should come every 10 minutes or so as that is on average how long it takes for a block to be mined.
4144  Bitcoin / Bitcoin Technical Support / Re: WIF Checksum Checking on: February 07, 2017, 02:47:46 PM
I am not familiar with go, I just looked at the logic.

It looks like you should be using btcutil.base58.Decode()
4145  Bitcoin / Bitcoin Technical Support / Re: Can anyone help unconfirmed balance on multi-bit on: February 07, 2017, 01:55:17 PM
Can I ask do you have to do one transaction at a time ? and does it mean all the remaining balance is unusable while there is a transaction waiting for a confirmation ?
You don't have to do one transaction at a time or have to wait for previous transactions to confirm, but any transactions that depend on an unconfirmed transaction will not confirm until the ones it depends on confirm as well.

The issue with your transaction is the low fee. You have a few options here. You can wait and hope it confirms, wait for the transaction to be "forgotten" by the network, attempt a double spending transaction that pays a higher fee, or ask a miner to confirm it for you.

For the third option, you can do "Repair wallet" in MultiBit. That will clear all unconfirmed transactions from your wallet. Then you can respend the BItcoin in a transaction with a higher transaction fee.

For the fourth option, you can contact the users Quickseller and macbook-air.
4146  Bitcoin / Bitcoin Technical Support / Re: Need Help Please *Unconfirmed Transactions* on: February 07, 2017, 04:43:17 AM
Okay, thank you a lot man, i will contact them
as a reference for my next transaction so i don't have this problem, what wallet should i use and what fees do you recommend
Thank you again.
Well any wallet that has Dynamic fees should be fine. Personally I use Bitcoin Core and Armory but that requires syncing the entire blockchain so that may not be very good for you. Otherwise, I recommend using Electrum. However, IIRC Electrum might have the same fee cap issue as blockchain.info, so you may have to set the fee rate manually. For setting the fee rate, you can use sites like http://bitcoinfees.21.co/ and https://bitcoinfees.github.io/ to see what the optimal fee rate is and set that for the fee rate in your wallet before each transaction. The best fee rate will constantly change as the network state changes, so you can't have a fixed fee that will always work.

Note that those sites use satoshis/byte but most wallets do BTC/kB. You need to convert the number you get from those site by dividing the amount by 100000 and that will get you the fee rate in BTC/kB.
4147  Other / Meta / Re: Suggestions for 200th ad round? on: February 07, 2017, 04:09:22 AM
What did you do for the other big events (100th ad round I assume)?

How about having more than the normal number of ad slots.
4148  Bitcoin / Bitcoin Technical Support / Re: Need Help Please *Unconfirmed Transactions* on: February 07, 2017, 04:04:27 AM
Thank you for responding to me, i'm using blockchain.info as my wallet, i heard they offer dynamic fees that why i didn't set a manual one, i understand i made a mistake now, anything i can do?
IIRC Blockchain.info sets a maximum fee rate of 65 satoshis/byte, even if the recommended dynamic fee rate is much higher than that.

Unfortunately Blockchain.info does not provide enough advanced utilities to do option 3. Your only options are to wait or ask a miner for help. I suggest that you contact the two users I linked above.
4149  Bitcoin / Armory / Re: PLEASE help! armory stuck preparing Databases 0% 1 sec. Pastebin on: February 07, 2017, 04:02:46 AM
The issue was resolved over the IRC channel.
4150  Bitcoin / Bitcoin Technical Support / Re: Need Help Please *Unconfirmed Transactions* on: February 07, 2017, 03:40:49 AM
There are a few problems here.

Your third transaction depends on the first transaction, it cannot confirm until the first one does.

You have paid a low transaction fee on your transactions, ~65 satoshis/byte for the 2nd and third and ~55 satoshis/byte on the first. According to https://bitcoinfees.github.io/#30m the current recommended fee is ~140 satoshis/byte.

You have a few options here. You can wait and hope it confirms, wait for the transaction to be "forgotten" by the network, attempt a double spending transaction that pays a higher fee, or ask a miner to confirm it for you.

For the third option, we need to know what wallet software you are using.

For the fourth option, you can contact the users Quickseller and macbook-air.
4151  Bitcoin / Bitcoin Technical Support / Re: unconfirmed transaction 4 days.. How reject this? on: February 07, 2017, 03:37:02 AM
What mean "if the transaction does confirm, then the Bitcoin will be spent per that transaction" ?
That command tells your wallet to forget about that transaction. However not everyone on the network has necessarily forgotten about it, so it is possible that a miner decides to include your transaction in a block, thus confirming it. The best way to prevent that from happening is to immediately spend the Bitcoin to invalidate the original transaction.

How setup fee for new tx?
Code:
bitcoin-cli sendtoaddress MYWALLET 0.01

Thx!

Before you to that command, run the following:
Code:
bitcoin-cli estimatefee 3
bitcoin-cli settxfee <result of estimatefee>
where <result of estimatefee> is the result of the first command. It should be a number like 0.00137237. This will get the BTC/Kb estimate for a transaction to confirm within 3 blocks. Then it will set that so that when you send that is the fee rate for your transaction.
4152  Bitcoin / Bitcoin Technical Support / Re: WIF Checksum Checking on: February 07, 2017, 03:17:00 AM
That looks correct. What's not working about it?
4153  Bitcoin / Bitcoin Technical Support / Re: unconfirmed transaction 4 days.. How reject this? on: February 07, 2017, 03:13:49 AM
I afraid lose my btc.

 what happen after this command? not confirmed btc return to my wallet?

thank you!
Your wallet will ignore that that transaction ever happened and thus "return" the Bitcoin back to your wallet so that you can spend again. Of course, if the transaction does confirm, then the Bitcoin will be spent per that transaction.

BTW the terminal command is actually
Code:
bitcoin-cli abandontransaction <txid>
4154  Bitcoin / Development & Technical Discussion / Re: Post your SegWit questions here - open discussion - big week for Bitcoin! on: February 07, 2017, 02:27:58 AM
I assume that SegWit is so perfect,
That's a bad assumption to make. No software is perfect, no solution to scaling will be perfect.

but why most miners refuse to use it? It is 3 months after SegWit released, but only 20% miners agree to switch in SegWit mode, what is wrong? What do they think?
A lot of the problems seem to stem from miscommunication and lack of communication between developers and miners. It seems that some miners have taken a grudge against the developers (all of them in general) for not consulting them when devising scaling solutions.
4155  Bitcoin / Bitcoin Technical Support / Re: bitcoind, boostlib problem on: February 07, 2017, 02:08:30 AM
Your english is very hard to understand.

You have an error with your package manager. Something is broken about it, it cannot retrieve the necessary dependency packages of a package. This is not an issue with bitcoind or boost but rather an issue with your system. Google the error and you should be able to find a way to fix it.
4156  Other / Beginners & Help / Re: is this mining of bitcoin? on: February 07, 2017, 02:06:17 AM
Your question is hard to understand.

Running a full node is not the same thing has mining Bitcoin. Running a full node requires downloading the 100+ GB blockchain. Mining does not necessarily require that, you only need to do that if you are solo mining or operating a pool.

Running a full node will not earn you any money, you are not paid for the full node.
4157  Bitcoin / Bitcoin Technical Support / Re: sent BTC from Bitcoin-Qt unconfirmed cancel?? on: February 07, 2017, 12:51:10 AM
Here is the transaction ID:
c9320e86dd01ff8fdb069912a04930cae1c6736402f699ef7a7a48de1b541126
I can't find the transaction in any block explorer or on my own node. Given that it has been several weeks, it is safe to assume that the transaction has been dropped by the network and thus the Bitcoin has "returned" to your wallet. To actually be able to spend, you need to clear the unconfirmed transaction from your wallet. Right click the transaction in the transactions list and choose "Abandon transaction". If that option is not available, then you will have to start Bitcoin Core with the -zapwallettxes command line option.
4158  Bitcoin / Development & Technical Discussion / Re: Question on general node performance on: February 07, 2017, 12:15:05 AM
The only thing that is really sequential is the txins checking, and as far as i know, a tx in a block cant have input from a tx in the same block, so on a per block basis that shouldn't be a problem ?
A transaction can in fact have a parent transaction in the same block.
4159  Bitcoin / Development & Technical Discussion / Re: Post your SegWit questions here - open discussion - big week for Bitcoin! on: February 07, 2017, 12:11:38 AM
Anyone have a site in which we can see the amount of miners / people that have moved to helping to activate Segwit? It'd be nice to actually see this in some graph form.

Hoping for the activation of Segwit though.
This may be helpful: https://bitcoincore.org/en/segwit_adoption/
4160  Bitcoin / Bitcoin Technical Support / Re: sent BTC from Bitcoin-Qt unconfirmed cancel?? on: February 07, 2017, 12:10:29 AM
I did send it to my personal email address. It has a long BTC code with it as well. The transaction ID is almost twice as long. I'm cautious about giving out a transaction ID because I don't want them stolen. I just want to cancel the send so my BTC are back.
Again, Bitcoin cannot be sent to email addresses. That is simply not how Bitcoin works. You should have gotten a ~30 character Bitcoin address beginning with a '1'. The transaction ID should be 64 characters. Both address and txid are safe to post publicly, no one can steal the Bitcoin just by knowing the transaction id or knowing the details of a transaction.

Bitcoin transactions are irreversible, you cannot cancel a transaction and send the Bitcoin back to the sender.
Pages: « 1 ... 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 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 ... 590 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!