Pages:
Author

Topic: [SHUTTING DOWN] [DiceBitco.in | BE THE BANK ! | 1% House Edge] - page 71. (Read 102257 times)

legendary
Activity: 2940
Merit: 1333
Here's a better screenshot, posted by jebbster himself:

legendary
Activity: 2562
Merit: 1064
And thats how whales rollin!!(times x4)


Congrats, once again on the crazy rolls!

WTF, 118 BTC roll, I can't believe how they get courage to push the roll button.
member
Activity: 84
Merit: 10
And thats how whales rollin!!(times x4)


Congrats, once again on the crazy rolls!
legendary
Activity: 2940
Merit: 1333
Do you also have an ad campain?

They do.

It's currently full, but registration will apparently open again soon for the next month.

See https://bitcointalksearch.org/topic/dicebitcoin-make-the-most-out-of-your-sig-make-coins-by-simply-posting-717300
legendary
Activity: 2940
Merit: 1333
why DB charges a withdrawal fee and does not include any of it for a transaction fee?

13 blocks already have been mined any my transaction is still unconfirmed.



I made a support ticket on the site:

Quote
I've seen several customers complaining of having to wait many hours for their withdrawals to confirm.

I've looked into the problem and it seems to be caused by a recent change in the rules re. required fees.

I suspect lots of miners (or the big pools) are running old versions of bitcoind were stricter on fees, and so the withdrawal transactions you're making with no fee look like they don't have enough fee to the miners.

The code in question is in core.cpp:

Code:
    double CTransaction::ComputePriority(double dPriorityInputs, unsigned int nTxSize) const
    [...]
        BOOST_FOREACH(const CTxIn& txin, vin)
        {
            unsigned int offset = 41U + std::min(110U, (unsigned int)txin.scriptSig.size());
            if (nTxSize > offset)
                nTxSize -= offset;
        }

That's ignoring the bytes used to spend old outputs, in an attempt to clean up the blockchain by making it free to spend old outputs.

I think that removing the 6 lines of the whole FOREACH block would solve the problem, causing a little extra fees to be included in some cases, costing very little, and not pissing off your customers...

Hopefully that will help them make withdrawals work more quickly in future!

Edit: here's the transaction as it shows on blockchain.info:



Note that the transaction was seen at 13:06 and now it's 18:21, over 5 hours later.

The two inputs are:

1.60263675 BTC in block 317543, 24 confirms at time of spending
0.9999 BTC in block 317513, 54 confirms at time of spending

To determine whether a transaction can be free or not, first we multiply each inputs's value (in satoshis) by its depth (in blocks) and sum them:

Code:
>>> (24 * 160263675 + 54 * 99990000)
9,245,788,200

Then we divide by the size of the transaction, and if the result is bigger than 57,600,000 then the transaction can be free.

In old versions of the code, the whole size of the transaction was used - that's 372 bytes:

Code:
>>> 9245788200 / 372
24,854,269

That isn't bigger than 57.6 million, and so the transaction isn't free according to the old rules.

In new versions of the code, the transaction size is reduced to make it cost-effective to clean up old unspent outputs. In this case both inputs get a 155 byte allowance, reducing the effective transaction size by 310 to just 62 bytes. We then divide by 62:

Code:
>>> 9245788200 / 62
149,125,616

That *is* bigger than 57.6 million, and so the transaction *is* free.

(It's a little more complex than that, but I think that's more than enough detail already).

It's curious, given this, that blockchain.info says that the transaction fee is less than reco
mmended, but I guess they're still using the old rules too.
sr. member
Activity: 252
Merit: 250

Also, I was outside running a chainsaw at the time, so I'm doubly sure this wasn't me.

probably on the film set for the upcoming blockbuster "dooglus chainsaw massacre"  Grin
newbie
Activity: 27
Merit: 0
why DB charges a withdrawal fee and does not include any of it for a transaction fee?

13 blocks already have been mined any my transaction is still unconfirmed.

http://i.imgur.com/fUyLWXQ.png
member
Activity: 84
Merit: 10
I agree  Grin

More seriously, could you please reduce the space between each message in the chat (and maybe put a message for each bet bigger than 0.5 BTC (or another user defined value)) ?

whole chat will be rewritten from scratch )
member
Activity: 84
Merit: 10
per user filter preferences will be introduced within September Smiley
hero member
Activity: 537
Merit: 524
I agree  Grin

More seriously, could you please reduce the space between each message in the chat (and maybe put a message for each bet bigger than 0.5 BTC (or another user defined value)) ?
I'd like to be able to filter the high bets tab to only show big wins and losses. I don't really care about al the 2.676x 0.1 bets.
hero member
Activity: 616
Merit: 503
★Bitvest.io★ Play Plinko or Invest!
I agree  Grin

More seriously, could you please reduce the space between each message in the chat (and maybe put a message for each bet bigger than 0.5 BTC (or another user defined value)) ?
legendary
Activity: 4004
Merit: 1250
Owner at AltQuick.com
I just checked my investment history and see that my investment was divested and reinvested about an hour and a half ago:



Profit was high at the time, so I paid a little commission, but it has dropped down again now.

The documentation about investing says:

"We charge the commission only when profits are divested, or at Sunday each week at 00:00 UTC"

But this happened on Saturday, around 22:01 UTC.

What gives?

Hey Doog you are right. Misconfigured timezone on server made the commission collection script to run 2 hours prior to 00:00 UTC (aka 22:00) sorry for that I fixed it so it will never happen again.

You should give .1 to the next 9 posters so you give away a bitcoin! (I call .1 since I came up with it)

This should keep the morale high Tongue
member
Activity: 84
Merit: 10
I just checked my investment history and see that my investment was divested and reinvested about an hour and a half ago:



Profit was high at the time, so I paid a little commission, but it has dropped down again now.

The documentation about investing says:

"We charge the commission only when profits are divested, or at Sunday each week at 00:00 UTC"

But this happened on Saturday, around 22:01 UTC.

What gives?

Hey Doog you are right. Misconfigured timezone on server made the commission collection script to run 2 hours prior to 00:00 UTC (aka 22:00) sorry for that I fixed it so it will never happen again.
legendary
Activity: 2940
Merit: 1333
My commission was taken Aug 24, 2014 6PM (not sure what timezone it is). Are you sure you didn't divest manually yesterday? Commission divestment/reinvestment tends to have identical timestamps.

I'm pretty sure I didn't divest and then reinvest both in the same second for very similar but slightly different amounts, yes:



Also, I was outside running a chainsaw at the time, so I'm doubly sure this wasn't me.
legendary
Activity: 3654
Merit: 8909
https://bpip.org
I just checked my investment history and see that my investment was divested and reinvested about an hour and a half ago:

http://i.imgur.com/YvUuNS6.png

Profit was high at the time, so I paid a little commission, but it has dropped down again now.

The documentation about investing says:

"We charge the commission only when profits are divested, or at Sunday each week at 00:00 UTC"

But this happened on Saturday, around 22:01 UTC.

What gives?

My commission was taken Aug 24, 2014 6PM (not sure what timezone it is). Are you sure you didn't divest manually yesterday? Commission divestment/reinvestment tends to have identical timestamps.
sr. member
Activity: 392
Merit: 250
I can not log in, what happens?
after I click "login" it does not want, what I need to create a new ID?

At the top of the site, there's a menu labelled "More". Click it, then "Contact Support" and you'll be able to open a support ticket.

okay I'll try, thanks
how do I forget the password?
legendary
Activity: 2940
Merit: 1333
I can not log in, what happens?
after I click "login" it does not want, what I need to create a new ID?

At the top of the site, there's a menu labelled "More". Click it, then "Contact Support" and you'll be able to open a support ticket.
sr. member
Activity: 392
Merit: 250
I can not log in, what happens?
after I click "login" it does not want, what I need to create a new ID?
legendary
Activity: 2940
Merit: 1333
I just checked my investment history and see that my investment was divested and reinvested about an hour and a half ago:



Profit was high at the time, so I paid a little commission, but it has dropped down again now.

The documentation about investing says:

"We charge the commission only when profits are divested, or at Sunday each week at 00:00 UTC"

But this happened on Saturday, around 22:01 UTC.

What gives?
legendary
Activity: 2940
Merit: 1333
I get the impression that dicebitco.in's position on this is "you don't know where we are; fuck da police; come at me bro".

.... find them *to* steal your investment.

ROTFLMFFAO!!x1O^

You often write incomprehensible garbage in your own posts but this is the first time I've seen you mangle someone else's post to the point that it's hard to understand what they were saying. The "find them" in my post was preceeded by "being able to track the owners down [means] a thief can" which really changes its meaning.

Perhaps you could try making your point again, but this time using actual words instead of just mangled quotes, capital letters, punctuation, and cartoons.

TYVM^x10^= Roll Eyes
Pages:
Jump to: