Bitcoin Forum
May 27, 2024, 06:08:58 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 ... 83 »
301  Economy / Currency exchange / [Trusted]Selling 4 100 Dollar MP'S [Bitcoin-Financial.com] on: March 04, 2013, 06:48:08 PM
Like It says got 4 MP's with scan of receipt of course.
This is the best deal around for MP's right now.
302  Other / Beginners & Help / Re: Logged Out/Booted for being a good little newbie BOOOO on: March 04, 2013, 02:34:56 PM
set you logout time for 99999 You wont get booted anymore.
303  Alternate cryptocurrencies / Altcoin Discussion / Re: Ripple Giveaway! on: March 03, 2013, 12:07:49 AM
rfnLrGMxYy6cZX6rYZG8Bmm1aZ9hABjLg
304  Economy / Lending / Re: Bitcoin-Financial.com on: March 02, 2013, 06:10:11 PM
First Bank Transfer to BTC-E finally went through  Grin
305  Other / Beginners & Help / Re: Introduce yourself :) on: March 01, 2013, 05:16:17 PM
Hi all,

New to this and find it very interesting.

MR S

It is a very interesting indeed.
306  Economy / Services / Re: Need a Programmer on: March 01, 2013, 03:40:13 PM
Based on what you're describing, the problem is not in this piece of code.

When you're withdrawing, you should record the withdraw in the database somewhere by subtracting it from "final amount" stored in the database. So that the final amount/balance is always accurate to what is in the blockchain.

Ill see what I can do.
307  Economy / Lending / Re: Bitcoin-Financial.com on: March 01, 2013, 03:12:07 PM
The verification software is pretty cool but it seems to not like the lowend webcams
https://bitcoinfinancial.netverify.com/v2
308  Economy / Service Discussion / Re: Vircurex vs BTC-e on: March 01, 2013, 12:09:21 AM
Yea and its all gone, seems there is room for more players out there for sure  Cool
309  Bitcoin / Bitcoin Discussion / Re: Bitcoinpal.net opening its doors! on: February 28, 2013, 10:27:48 PM
Paypal is going to be all over your ass lol
310  Economy / Services / Re: Need a Programmer on: February 28, 2013, 09:31:03 PM
what lang is this? looks like VB

the <= appears to be what you want given the logic you described

what is the problem you are seeing with the current code, if you send more coin to the wallet Address A it doesn't update anything?

and what are you trying to do exactly? keep the balance up to date?

why wouldn't you simply always use the new_final_amount as the current balance?

It updates in my system fine, and thats all I want it to do. But what happens is if you deposit 5 bitcoins into one of the bulk wallet addresses then I withdraw it. The next deposit will not show up untill you deposit 5 bitcoins and thing it will only show the amount after that. I have to assume this would go on forever.
311  Other / Off-topic / Re: Forget Pirate@40 .... meet Pirate@92 on: February 28, 2013, 06:39:36 PM
I think I seen a matter of 10 real dvd's the whole time I was there lol.
312  Economy / Services / Re: Looking for job on: February 28, 2013, 06:15:35 PM
stripcoin?
313  Other / Beginners & Help / Re: Introduce yourself :) on: February 28, 2013, 06:02:17 PM
Hi, I'm just biding my time until I can post in the forums proper Cheesy

Here's my newbie question: how long does that take?
4 hours of online time  Undecided Sucks but stop's "Some" of the crap.
314  Economy / Services / Re: Need a Programmer on: February 28, 2013, 05:15:19 PM
seems to be a no go on that. Now it just reads and spits out the same amount each minute lol.
315  Other / Beginners & Help / Re: FREE COINS! Bitcoin-Financial.com FREE COINS! on: February 28, 2013, 05:13:47 PM
Are you seriously surprised at the turnout for people to send you a picture of their ID's for 0.01 BTC? No ty, I'll pass

I got over 100 members that have already done it so..... yes they do.
316  Other / Beginners & Help / Re: FREE COINS! Bitcoin-Financial.com FREE COINS! on: February 28, 2013, 03:49:42 PM
Still giving away free coins come get them!
317  Economy / Services / Re: Need a Programmer on: February 28, 2013, 03:34:23 PM
Here's your problem right there:

if new_final_amount <= old_final_amount:
                  continue


If the current amount is less then the old amount, then the "continue" is executed ending the current loop.

Delete those two lines and you should be good.
Thank you greyhawk if it works Ill send a tip your way.
318  Economy / Services / Re: Need a Programmer on: February 28, 2013, 03:33:43 PM
How much are you paying>
What background do you have? Can I see some examples of work you have completed or some references please.
319  Economy / Currency exchange / Re: [Coins for Sale]Bitcoin-Financial.com Need coins fast? Check here! on: February 28, 2013, 03:32:40 PM
New video today!

320  Economy / Services / Need a Programmer on: February 28, 2013, 03:21:19 PM
I need someone to help me figure this out, my programmer had a family emergency and I have minimal skills.
What is happening is when the script calls the addy if the balance is lower then the last call it will not add the coins untill it adds up past the fist amounts. Bulk wallet has address A  address A is sent 5 coins 3 are withdraw from the the bulk wallet that pulls them from the address. In order for the address to show a new deposit it has to be higher then the last.

print("Checking member ["+str(member_id)+"] Bit Coin final amount for updates...")
               bitcoin_address = bitcoin_db_class.BitCoinDB.member_address_list[member_id]["address"]
               old_final_amount = bitcoin_db_class.BitCoinDB.member_address_list[member_id]["final_amount"]
               new_final_amount = Decimal(blockchain_api.BlockChainAPI.GetFinalAmount(bitcoin_address))
               if new_final_amount <= old_final_amount:
                  continue
               print("New amount["+str(new_final_amount)+"] found...Updating database...")
               bitcoin_db_class.BitCoinDB.AddMemberFinalAmount(member_id, new_final_amount)
               bitcoin_db_class.BitCoinDB.member_address_list[member_id]["final_amount"] = new_final_amount
         time_now = time.clock()
         run_once = True
      UpdateMembersBitCoinFinalAmountThread.going = False


Of course I am willing to pay for help!
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 ... 83 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!