Bitcoin Forum
May 22, 2024, 03:41:42 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1] 2 3 4 5 »  All
  Print  
Author Topic: Whats the longest you have waited for one confirmation??  (Read 4861 times)
CanadaBits (OP)
Full Member
***
Offline Offline

Activity: 126
Merit: 100


www.DonateMedia.org


View Profile WWW
February 13, 2015, 09:09:15 PM
 #1

Currently I have waited 3 hour Undecided

juju
Sr. Member
****
Offline Offline

Activity: 381
Merit: 250



View Profile
February 13, 2015, 09:22:20 PM
 #2

Currently I have waited 3 hour Undecided

Probably 1-3 Hours like yourself

I found this searching around google, some people claim Satoshi waited 130 Hours after mining Genesis to the first Block, however this I beleive is untrue, its more likely he was fixing issues with the code during this time and it did not actually take him 130 hours.

-----

Here's a complete list of the differences between blocks, sorted by difference: http://paste.ubuntu.com/6780012/
And here's a BASH script used to get a list of blocks and a difference between their timestamps (requires jq):
Code:
#!/bin/bash

COUNT=$(bitcoind getblockcount)
PREVTIME=0

for (( i=0; i<=$COUNT; i++ ))
do
    HASH=$(bitcoind getblockhash $i)
    TIME=$(bitcoind getblock $HASH|jq ".time")

    if (( "$i" > 0 )); then
        echo "$(expr $i - 1)-$i     $(expr $TIME - $PREVTIME)"

        #progress display
        if (( $(($i % $(($COUNT / 100)))) == 0)); then
            echo "$i*100/$COUNT"|bc|tr '\n' '%' 1>&2
            echo "" 1>&2
        fi
    fi

    PREVTIME=$TIME
done

Run it like this: bash blocktime.sh|sort -n -k2. Takes a while to run (circa three hours on my system).

cheekychap
Full Member
***
Offline Offline

Activity: 182
Merit: 100


View Profile
February 13, 2015, 09:53:15 PM
 #3

Around 1.5 hours. And the delay almost always happens, when I need it the quickest :/

theskillzdatklls
Hero Member
*****
Offline Offline

Activity: 1328
Merit: 563


MintDice.com | TG: t.me/MintDice


View Profile WWW
February 13, 2015, 10:09:20 PM
 #4

almost always near instant. one time though it took 8 hours or so, idk why.




.




  ▄▄▄▄▄▄▄▄▄▄▄▄▄
▄████████▀▀▀▀███▄
███████▀     ████
███████   ███████
█████        ████
███████   ███████
▀██████   ██████▀
  ▀▀▀▀▀   ▀▀▀▀▀

  ▄▄▄▄▄▄▄▄▄▄▄▄▄
▄██▀▀▀▀▀▀▀▀▀▀▀██▄
██    ▄▄▄▄▄ ▀  ██
██   █▀   ▀█   ██
██   █▄   ▄█   ██
██    ▀▀▀▀▀    ██
▀██▄▄▄▄▄▄▄▄▄▄▄██▀
  ▀▀▀▀▀▀▀▀▀▀▀▀▀

            ▄▄▄
█▄▄      ████████▄
 █████▄▄████████▌
▀██████████████▌
  █████████████
  ▀██████████▀
   ▄▄██████▀
    ▀▀▀▀▀

    ██  ██
  ███████████▄
    ██      ▀█
    ██▄▄▄▄▄▄█▀
    ██▀▀▀▀▀▀█▄
    ██      ▄█
  ███████████▀
    ██  ██




               ▄
       ▄  ▄█▄ ▀█▀      ▄
      ▀█▀  ▀   ▄  ▄█▄ ▀█▀
███▄▄▄        ▀█▀  ▀     ▄▄▄███       ▐█▄    ▄█▌   ▐█▌   █▄    ▐█▌   ████████   █████▄     ██    ▄█████▄▄   ▐█████▌
████████▄▄           ▄▄████████       ▐███▄▄███▌   ▐█▌   ███▄  ▐█▌      ██      █▌  ▀██    ██   ▄██▀   ▀▀   ▐█
███████████▄       ▄███████████       ▐█▌▀██▀▐█▌   ▐█▌   ██▀██▄▐█▌      ██      █▌   ▐█▌   ██   ██          ▐█████▌
 ████████████     ████████████        ▐█▌    ▐█▌   ▐█▌   ██  ▀███▌      ██      █▌  ▄██    ██   ▀██▄   ▄▄   ▐█
  ████████████   ████████████         ▐█▌    ▐█▌   ▐█▌   ██    ▀█▌      ██      █████▀     ██    ▀█████▀▀   ▐█████▌
   ▀███████████ ███████████▀
     ▀███████████████████▀
        ▀▀▀█████████▀▀▀
FIND OUT MORE AT MINTDICE.COM
Bralex
Sr. Member
****
Offline Offline

Activity: 308
Merit: 250



View Profile
February 13, 2015, 10:11:00 PM
 #5

Around 1.5 hours. And the delay almost always happens, when I need it the quickest :/

The same the only times it has which is only a few times but that was the times i really needed it to confirm in 15 - 30 mins max but no aha

Can be hours and hours without fee?

cloudthink.io   



 



 



 



 



 



Truly Profitable Investment Packages
Custom-Built ASIC Miners ● #1 Self-Sustainable Bitcoin Mining Service in the World ●
BitUsher
Legendary
*
Offline Offline

Activity: 994
Merit: 1034


View Profile
February 13, 2015, 10:33:31 PM
 #6

50 minutes for me , but that is just because I use it so much and therefore increase the probability that I see a long confirmation time. Most confirmations are 7-12 minutes.

It's a Poisson process, with a mean of 10 minutes. So...

What is the probability that the next block will be found within 10 minutes from now?
63.212%

Or within 1 minute?
9.516%

Or 10 seconds?
1.653%

Or 1 second?
0.167%
shorena
Copper Member
Legendary
*
Offline Offline

Activity: 1498
Merit: 1520


No I dont escrow anymore.


View Profile WWW
February 13, 2015, 10:34:35 PM
 #7

Currently I have waited 3 hour Undecided

7 or 8 days, but I didnt pay a fee, the TX never confirmed I had to doublespend it.

Im not really here, its just your imagination.
dserrano5
Legendary
*
Offline Offline

Activity: 1974
Merit: 1029



View Profile
February 13, 2015, 10:35:06 PM
 #8

I once waited 12 hours but it was fee related. Does that count? Tongue
el kaka22
Legendary
*
Offline Offline

Activity: 3528
Merit: 1162


www.Crypto.Games: Multiple coins, multiple games


View Profile
February 13, 2015, 10:37:31 PM
 #9

yaa between 3-5 hours was the longest i ever waited

█████████████████████████
███████▄▄▀▀███▀▀▄▄███████
████████▄███▄████████
█████▄▄█▀▀███▀▀█▄▄█████
████▀▀██▀██████▀██▀▀████
████▄█████████████▄████
███████▀███████▀███████
████▀█████████████▀████
████▄▄██▄████▄██▄▄████
█████▀▀███▀▄████▀▀█████
████████▀███▀████████
███████▀▀▄▄███▄▄▀▀███████
█████████████████████████
.
 CRYPTOGAMES 
.
 Catch the winning spirit! 
█▄░▀███▌░▄
███▄░▀█░▐██▄
▀▀▀▀▀░░░▀▀▀▀▀
████▌░▐█████▀
████░░█████
███▌░▐███▀
███░░███
██▌░▐█▀
PROGRESSIVE
      JACKPOT      
██░░▄▄
▀▀░░████▄
▄▄▄▄██▀░░▄▄
░░░▀▀█░░▀██▄
███▄░░▀▄░█▀▀
█████░░█░░▄▄█
█████░░██████
█████░░█░░▀▀█
LOW HOUSE
         EDGE         
██▄
███░░░░░░░▄▄
█▀░░░░░░░████
█▄░░░░░░░░█▀
██▄░░░░░░▄█
███▄▄░░▄██▌
██████████
█████████▌
PREMIUM VIP
 MEMBERSHIP 
DICE   ROULETTE   BLACKJACK   KENO   MINESWEEPER   VIDEO POKER   PLINKO   SLOT   LOTTERY
dex1
Full Member
***
Offline Offline

Activity: 141
Merit: 116



View Profile
February 13, 2015, 10:40:26 PM
 #10


On average it should take about 10 min to mine a new block (i.e to get one confirmation) but when you're unlucky (as I was yesterday)
you can find yourself in more than one hour gap between blocks  Angry
See
block 343200 (Main Chain)    2015-02-12 23:04:18
and next one
block 343201 (Main Chain)    2015-02-13 00:08:00

And even your fees wouldn't speed that up.
tspacepilot
Legendary
*
Offline Offline

Activity: 1456
Merit: 1078


I may write code in exchange for bitcoins.


View Profile
February 13, 2015, 10:40:57 PM
 #11

Currently I have waited 3 hour Undecided

I've waited nearly a day when I sent without a reasonable fee (or when someone sent to me without a fee).
enryk
Full Member
***
Offline Offline

Activity: 168
Merit: 100

GreenCoin


View Profile
February 13, 2015, 10:41:56 PM
 #12

Currently I have waited 3 hour Undecided

I've waited nearly a day when I sent without a reasonable fee (or when someone sent to me without a fee).
Well countint that, I am sure people would have waited about a month Tongue
But that would be your fault, not the network.

Kazimir
Legendary
*
Offline Offline

Activity: 1176
Merit: 1003



View Profile
February 13, 2015, 10:49:40 PM
 #13

In every day practice, I pretty much NEVER wait for confirmations.

I don't care how fast it confirms. I send my payments, and that's it.

Same with receiving. I see an incoming transaction, and from that point I already know 99.9999% sure it's going to be confirmed, whether be it in a few minutes, or maybe in a few hours if the fee was very low or whatever. I don't care, I'll receive the money either way.

For almost ALL practical situations involving Bitcoin payments, the confirmation time actually doesn't matter.

In theory, there's no difference between theory and practice. In practice, there is.
Insert coin(s): 1KazimirL9MNcnFnoosGrEkmMsbYLxPPob
enryk
Full Member
***
Offline Offline

Activity: 168
Merit: 100

GreenCoin


View Profile
February 13, 2015, 11:04:25 PM
 #14

In every day practice, I pretty much NEVER wait for confirmations.

I don't care how fast it confirms. I send my payments, and that's it.

Same with receiving. I see an incoming transaction, and from that point I already know 99.9999% sure it's going to be confirmed, whether be it in a few minutes, or maybe in a few hours if the fee was very low or whatever. I don't care, I'll receive the money either way.

For almost ALL practical situations involving Bitcoin payments, the confirmation time actually doesn't matter.

I have seen threads where people say that confirmation times don't matter, but for some reasons like deposits to service sites/Exchanges/ Gambling sites, the confirmation time do matter. Your deposit only gets confirmed after 2-3 confirmations.

Kazimir
Legendary
*
Offline Offline

Activity: 1176
Merit: 1003



View Profile
February 13, 2015, 11:07:59 PM
 #15

Ok, yes, when depositing bitcoins to an exchange, it matters. How often do you do this, especially in circumstances where you're in a hurry? Maybe panic selling isn't a good idea to begin with.

In theory, there's no difference between theory and practice. In practice, there is.
Insert coin(s): 1KazimirL9MNcnFnoosGrEkmMsbYLxPPob
redsn0w
Legendary
*
Offline Offline

Activity: 1778
Merit: 1042


#Free market


View Profile
February 13, 2015, 11:14:23 PM
 #16

I've waited  ~2 hours (very lucky) for receive 1 confirm to my old transaction.
enryk
Full Member
***
Offline Offline

Activity: 168
Merit: 100

GreenCoin


View Profile
February 13, 2015, 11:15:16 PM
 #17

Ok, yes, when depositing bitcoins to an exchange, it matters. How often do you do this, especially in circumstances where you're in a hurry? Maybe panic selling isn't a good idea to begin with.

Actually would be hard to say so . Everytime, I become conscious about the large delay, its usually when depositing to an exchange or a gambling site or a poker site where I need few confirmations. Other times, when I am not in a hurry, I don't bother checking  , so it is true it doesn't apply then.

ivonna
Full Member
***
Offline Offline

Activity: 139
Merit: 100

www.secondstrade.com - 190% return Binary option


View Profile
February 15, 2015, 02:24:05 AM
 #18

Currently I have waited 3 hour Undecided

7 or 8 days, but I didnt pay a fee, the TX never confirmed I had to doublespend it.
If you had to wait that long then the tx should have fallen out of most nodes' mempool well before that time.

In the past no fee tx's of mine has fallen out of most nodes' mempool after several blocks (maybe 10-20 or so) that were found  after I initially broadcast the tx but did not include my tx in their block. I had to use my own node to manually push it back onto the network and wait a total of ~18 hours for it to eventually confirm

▲▼▲▼▲▼▲▼  No.1 Bitcoin Binary Options  ▲▼▲▼▲▼▲▼
████████████████████████████████  sec◔nds trade  ████████████████████████████████
↑↓ Instant Bets ↑↓ Flexible 1~720 minutes Expiry time ↑↓ Highest Reward 190% ↑↓ 16 Assets [btc, forex, gold, double dice] ↑↓
jacktheking
Legendary
*
Offline Offline

Activity: 1484
Merit: 1001


Personal Text Space Not For Sale


View Profile
February 15, 2015, 03:28:26 AM
 #19

Been waiting for weeks for a small 0.0013 transaction.. Not sure if it will ever be confirmed..

So sad! This profile does not appear as the #1 result (on anonymous) Google searches anymore.

Time to be active on the crypto forums again? Proud to be one of the few Legendary members of the Sparkie Red Dot!

Gonna put this on my resume if I ever join a cryptocurrency/blockchain industry!
twister
Hero Member
*****
Offline Offline

Activity: 672
Merit: 501



View Profile WWW
February 15, 2015, 03:59:12 AM
 #20

Recently sent some btc to an exchange and needed it urgently and it got stuck for like 45 minutes, though it seemed more than that and I couldn't understand what the problem was, I had added the fee but it just wouldn't get confirmed. It was really annoying.

 

██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████
 
Get Free Bitcoin Now!
  ¦¯¦¦¯¦    ¦¯¦¦¯¦    ¦¯¦¦¯¦    ¦¯¦¦¯¦   
0.8%-1% House Edge
[/
Pages: [1] 2 3 4 5 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!