Bitcoin Forum
May 03, 2024, 11:59:46 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 [32] 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 ... 116 »
  Print  
Author Topic: 🌟🎲🌟 MoneyPot.com  (Read 119021 times)
hua_hui
Legendary
*
Offline Offline

Activity: 1386
Merit: 1016



View Profile
June 21, 2016, 04:24:27 AM
 #621

I have to say. I was really upset the other day when I tried 4 times to take money out of mp and I could not because the site was down. This is unacceptable. I have since taken most of my btc out and am investing in the let it ride dice project instead.
After years of business for you to go down for dozens of hours is just unacceptable. If this problem ever happens again I'll be forced to withdrawal the rest of my btc and cease to do business with mp going forward.




Nice try troll. Your just upset I called your project out the other day. MoneyPot has not been down for dozens of hours, infact it hasn't been down in a couple days (when it went down for a couple hours because of a DDoS attack). We also haven't been in business for years... Try 6 months.

How am I a troll? Im just voicing my opinion and you are attacking me. What kind of community is this?
and infact it was down for over 12 hours because i tried 4 times during the day and it was down each time.



Bud, give it up. The site was not down for 12 hours, that is fact, I was on the site all yesterday. Looking at your post history, you are either part of the Let It Ride team or seriously invested. Its not my fault you invested in a shitty project and I called that project out. When I called it out, I did with the stats provided by the Let It Ride team.

If you want to lie and FUD, I will mark you with negative.

It is not lies or fud. The site was down for over 12 hours. It went up I assume at some point but all day when I tried it was down. Others have said the same thing in this thread just a few posts up. I am very invested in LIR, it's true, but I was also invested here. And as an investor I have a right to leave my feedback on a coin or project or item. Now please calm down a bit with your heavy handed abuse of power threats because the road goes both ways.  Wink
Just remember that my friend.


Its not an abuse of power, you are slandering without any base. Look at the time stamps of the posts you are referring to above, notice how complaints of the site being down are 3+ days old, and once again, the site was down at that point in time due to a series of DDoS attacks. The site was not down yesterday, and our site hasn't been down for 12+ hours since the last heavy maintenance we conducted... which was quite some time ago.

You have the right to leave feedback for sure, however only if it is a genuine complaint, we want to provide our users with the best experience possible. Blatant trolling/lies will not be tolerated in the slightest.

Guys can both of you chill out a bit and forget about it. To me, moneypot and LIR have both it cons and pros. There is no need to slam one another. I believe the success of both projects and i am involved in both project too.
"Bitcoin: the cutting edge of begging technology." -- Giraffe.BTC
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714780786
Hero Member
*
Offline Offline

Posts: 1714780786

View Profile Personal Message (Offline)

Ignore
1714780786
Reply with quote  #2

1714780786
Report to moderator
MillionsBTCdev
Sr. Member
****
Offline Offline

Activity: 353
Merit: 254


unibtc - Bitsler.com Developer


View Profile WWW
June 21, 2016, 04:52:23 AM
Last edit: June 21, 2016, 05:13:57 AM by MillionsBTCdev
 #622

That is why (as stated in the part you quoted) we will be fixing it shortly, either through the launch of v2.0 (which is coming soon) or a patch for it if v2.0 runs into any issues during final testing.

Understood. I just meant that it seems like a sufficiently serious bug that it's worth patching immediately even at the expense of performance. For all intents and purposes while the bug exists, the casino isn't provably fair. As no one can distinguish "invalid hash" from a legitimate db issue to you not wanting to honor the bet (.e.g. a winning bet at the end of a martingale sequence).  From the sound of the description of the bug it just sounds like the code is (psuedo code):


Code:
  var hash = getNewHash();
  db.queryPromise('INSERT INTO hashes VALUES($1)', [hash]);
  this.body = hash;

and needs only needs a 1 line change to:

Code:
  var hash = getNewHash();
  yield db.queryPromise('INSERT INTO hashes VALUES($1)', [hash]);
  this.body = hash;


(or something?)  Or perhaps more likely, I completely misunderstood the problem and I apologize  Grin

Hi there,
Sorry i was only able to check the forum just now, was so busy lately with bunch of DDoS attacks.
Anyway, thanks for your input, but ive made sure that the generation of new hash(next_hash)are yielded properly.

**ive omitted/changed some of the codes below for privacy concerns**
Code:
function* query (sql, params) {
  const [client, done] = yield pg.connectPromise(dburl);
  try {
    return yield client.queryPromise(sql, params);
  } finally {
     done();
  }
}
function* inserthash(){
var hash = make_hash();
var r = yield query('INSERT INTO hashes (newhash) VALUES($1)', [hash]);
 if (r.rowCount === 0) // 1st check
    throw new Error('Could not insert into bet hashes');
  assert(r.rows.length === 1); // 2nd check
  var new_hash = r.rows[0].newhash; //3rd check
  assert(typeof new_hash === 'string'); //4th check
return new_hash;
}

I've doubled checked,tripled check, the generation of hash and the deletion of used hash,and they are yielded properly.. Ive also setup a cron job to just manually vacuum/analyze the db in case it hits a certain threshold of dead rows which tends to be fast.. As you may have read on previous pages(not sure if i told it here), limits have been removed for all and any kinds of bets/wagers, this was also voted by the mp owners, its why the volume of incoming bets is huge specially on peak hours.

I also cannot just generate a new hash if the bet encounters a invalid hash error as that would defeat the very sense of provably fair. So there two immediate solutions i can think of:
1. Would need the participation of the app owners/dev, that is on every response of a bet, get the next_hash value, and call GET /v1/hashes to check if the hash is valid or not. https://www.moneypot.com/api-docs#v1-auth-check-if-hash-has-been-used and if the hash is invalid, generate a new hash, if valid, continue with the bet. I know this is an extra call that some may think the bet will be slow, but this is the only 100% sure way that you won't get invalid_hash.
2. Is more simpler, raise the min wager a bit, bring back the delays on small wagered bets.

Thanks,
-uni

FYI for all: MP has and is under DDoS attack thru out the day/night, So you might see Cloudflare challenge/captcha sometimes when visiting the site. Withdrawals are still instant as always, but we do advise to contact us in case you are trying to withdraw big amounts such as 10+ or 20+ btc

Quickseller
Copper Member
Legendary
*
Offline Offline

Activity: 2870
Merit: 2298


View Profile
June 21, 2016, 05:27:01 AM
 #623

I have to say. I was really upset the other day when I tried 4 times to take money out of mp and I could not because the site was down. This is unacceptable. I have since taken most of my btc out and am investing in the let it ride dice project instead.
After years of business for you to go down for dozens of hours is just unacceptable. If this problem ever happens again I'll be forced to withdrawal the rest of my btc and cease to do business with mp going forward.




Nice try troll. You're just upset I called your project out the other day. MoneyPot has not been down for dozens of hours, infact it hasn't been down in a couple days (when it went down for a couple hours because of a DDoS attack). We also haven't been in business for years... Try 6 months.
Lol. It looks like someone thinks that MP investors are suckers and are trying to lure them away to what is clearly a sucker's investment (aka let it ride). Both the "blockchain specialist" and the "marketing director" of Let It Ride are clearly purchased accounts, the later likely being purchased less then a week prior to the Let It Ride thread being opened. In fact, I would not be entirely surprised if Let It Ride was actually a one man operation. I am actually very surprised that so much money has been entrusted with the people person behind "Let It Ride", although based on the number of sockpuppets that are clearly behind it, I would say that a decent amount of money is either recycled and/or belongs to the person behind Let It Ride.

Anyway, back on topic, I don't believe that MP has ever been down for substantial amounts of time, and that the majority of MP's downtime has been out of their control (eg DDoS attacks that happen to pretty much every Bitcoin related site).
shulio
Legendary
*
Offline Offline

Activity: 1540
Merit: 1016


View Profile
June 21, 2016, 06:12:53 AM
 #624


Guys can both of you chill out a bit and forget about it. To me, moneypot and LIR have both it cons and pros. There is no need to slam one another. I believe the success of both projects and i am involved in both project too.

No one is slamming each other here. From what i have seen it seems Acoin is just stating some realistic calculation for the project which the potential investor should know , this will avoid them to invest in it blindly however b0art seems to take it as an attack and try to attack back on this thread
Avirunes
Legendary
*
Offline Offline

Activity: 3094
Merit: 1468


View Profile WWW
June 21, 2016, 12:19:39 PM
 #625

Is moneypot down? I am facing an 522 cloudfare error.Shows me host is down.Can anyone please verify me that is it me only or it is really that moneypot is down?
AcoinL.L.C
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000



View Profile
June 21, 2016, 12:25:05 PM
 #626


Guys can both of you chill out a bit and forget about it. To me, moneypot and LIR have both it cons and pros. There is no need to slam one another. I believe the success of both projects and i am involved in both project too.

No one is slamming each other here. From what i have seen it seems Acoin is just stating some realistic calculation for the project which the potential investor should know , this will avoid them to invest in it blindly however b0art seems to take it as an attack and try to attack back on this thread

I am fine with genuine concern/criticism. I'm just done with the blatant trolling/FUD that is not supported by anything. And yes, he probably came here because I showed the math on LIR's ANN thread on why even if Let It Ride is a success it would still underperform compared to investing in quite literally any other gambling site. And thats assuming its successful.


As Uni mentioned, we are under massive DDoS attack currently. We apologize for any delays this causes. If anyone is trying to make a large withdrawal, please message one of us.
AcoinL.L.C
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000



View Profile
June 21, 2016, 12:25:56 PM
 #627

Is moneypot down? I am facing an 522 cloudfare error.Shows me host is down.Can anyone please verify me that is it me only or it is really that moneypot is down?

The site is currently up, however it goes down sporadically due to the DDoS attack thats currently hitting us.
b0art
Full Member
***
Offline Offline

Activity: 163
Merit: 100


View Profile
June 21, 2016, 03:31:48 PM
 #628


Guys can both of you chill out a bit and forget about it. To me, moneypot and LIR have both it cons and pros. There is no need to slam one another. I believe the success of both projects and i am involved in both project too.

No one is slamming each other here. From what i have seen it seems Acoin is just stating some realistic calculation for the project which the potential investor should know , this will avoid them to invest in it blindly however b0art seems to take it as an attack and try to attack back on this thread

I am not attacking this thread or MP. I am just upset that it took me a full day to try and get my btc out of MP.
Anyone who tries for a day to get on a website but keeps getting declined due to a ddos attack has the right to be upset.
Wouldn't you be upset?
erwin45hacked
Legendary
*
Offline Offline

Activity: 1064
Merit: 1000



View Profile
June 21, 2016, 03:47:45 PM
 #629

I am not attacking this thread or MP. I am just upset that it took me a full day to try and get my btc out of MP.


Yes you did, the moment you are bringing another site on this thread, it means you are attacking them indirectly. If you are a legit player that want to withdraw from the site then you wont be bringing another site here and clearly your attention is to discredit MP and tries to make people aware of that other sites you mention here
b0art
Full Member
***
Offline Offline

Activity: 163
Merit: 100


View Profile
June 21, 2016, 03:51:20 PM
 #630

if i lend 10 btc for 1 year for moneypot how much can i get back

AS YOU ALL CAN SEE I WAS IN THIS THREAD BEFORE I EVEN NEW THE OTHER THREAD OR PROJECT. AND AFTER I ASKED THIS QUESTION AND GOT THE RESPONSE I PUT MONEY IN MP. I WANTED TO TAKE SOME OUT FOR THE OTHER PROJECT, YES THIS IS TRUE, BUT I AM ENTITLED TO DO THAT AND TO MY SURPRISE WHEN I TRIED TO GET MY BTC MP WAS DOWN. IM NOT HERE TRYING TO FUD OR CROSS PROMOTE. JUTS TRYING TO GET MY BTC FROM MP.
Erza
Legendary
*
Offline Offline

Activity: 1078
Merit: 1000


View Profile
June 21, 2016, 04:10:18 PM
Last edit: June 21, 2016, 04:22:14 PM by Erza
 #631

I know what happened to moneypot but it said that my ip has been banned for no reason. This thing never happened to me before so please clarify this thing. And I already make some deposit on your site too
Dogedigital (OP)
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


View Profile
June 21, 2016, 05:26:27 PM
 #632

We have been getting hit with millions of requests by over a thousand unique ip addresses.

We are tying to ban the attacking ips and yours must have mistakenly been banned in the process.

We profusely apologize and are currently working hard on mitigating the denial of service attacks from what appears to be coming from a botnet.
Dogedigital (OP)
Legendary
*
Offline Offline

Activity: 1330
Merit: 1000


View Profile
June 21, 2016, 05:31:04 PM
 #633

if i lend 10 btc for 1 year for moneypot how much can i get back

AS YOU ALL CAN SEE I WAS IN THIS THREAD BEFORE I EVEN NEW THE OTHER THREAD OR PROJECT. AND AFTER I ASKED THIS QUESTION AND GOT THE RESPONSE I PUT MONEY IN MP. I WANTED TO TAKE SOME OUT FOR THE OTHER PROJECT, YES THIS IS TRUE, BUT I AM ENTITLED TO DO THAT AND TO MY SURPRISE WHEN I TRIED TO GET MY BTC MP WAS DOWN. IM NOT HERE TRYING TO FUD OR CROSS PROMOTE. JUTS TRYING TO GET MY BTC FROM MP.


Hey. I'm one of the partners at Moneypot.

 I just wanted to apologize and offer any assistance in retrieving your funds or any other moneypot services you may need.

Please understand that all partners (including me) do not speak completely for moneypot and we care about customer service deeply.

Please don't hesitate to contact mefor any reason.  Thanks.
Trade_BTC
Hero Member
*****
Offline Offline

Activity: 785
Merit: 502



View Profile
June 21, 2016, 05:40:27 PM
 #634

Strange how the ddos has continued for weeks no player trolls that long so it should be quite obvious it's one of your competitors.  That's so sleazy and low brow of them. Sad that they resort to that stuff.
AcoinL.L.C
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000



View Profile
June 21, 2016, 06:13:38 PM
 #635

Strange how the ddos has continued for weeks no player trolls that long so it should be quite obvious it's one of your competitors.  That's so sleazy and low brow of them. Sad that they resort to that stuff.

Likely because BB alone was #2 behind PD for the last 40 days before the DDoS attacks started. Despite the constant attacks, bankroll profit is at an all time high and continues to climb.

We are in the process of vetting new defense systems, that while they will cost a very pretty penny, will ensure the attacker won't be able to keep us down.
EXmoneypotER
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
June 21, 2016, 06:45:02 PM
 #636

Phewwwwwwwwwwwwww.
At least I got my small amount of btc from the site before all this started.
I still like playing on plinkopot and that's down too. when will it come back up?
AcoinL.L.C
Legendary
*
Offline Offline

Activity: 1036
Merit: 1000



View Profile
June 21, 2016, 07:01:49 PM
 #637

Phewwwwwwwwwwwwww.
At least I got my small amount of btc from the site before all this started.
I still like playing on plinkopot and that's down too. when will it come back up?

"ex moneypoter", nice username troll. Ignored and left negative trust.

EXmoneypotER
Newbie
*
Offline Offline

Activity: 13
Merit: 0


View Profile
June 21, 2016, 07:04:35 PM
 #638

Phewwwwwwwwwwwwww.
At least I got my small amount of btc from the site before all this started.
I still like playing on plinkopot and that's down too. when will it come back up?

"ex moneypoter", nice username troll. Ignored and left negative trust.



LOL I'm fond of my username, but no so fond with montypot at this moment.
b0art
Full Member
***
Offline Offline

Activity: 163
Merit: 100


View Profile
June 21, 2016, 08:51:05 PM
 #639

Phewwwwwwwwwwwwww.
At least I got my small amount of btc from the site before all this started.
I still like playing on plinkopot and that's down too. when will it come back up?

"ex moneypoter", nice username troll. Ignored and left negative trust.



LOL I'm fond of my username, but no so fond with montypot at this moment.

I like your user name too. And if MP cant get its shit together maybe we'll see more accounts with similar names.
El3k0n
Member
**
Offline Offline

Activity: 109
Merit: 10


USA TRUMP USA TRUMP USA TRUMP


View Profile
June 21, 2016, 09:36:28 PM
 #640

Yo can I just withdrawal my BTC? can not access the site to get them off for the waves stuff! help devs Sad
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 [32] 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 ... 116 »
  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!