Title: Bitcoind for PHP Post by: genjix on July 01, 2011, 04:20:41 PM https://gitorious.org/intersango/bitcoind
I recommend this version of Bitcoin for people. Uses strings ("100000000") instead of doubles (1.0) for the RPC interface. And listreceivedsince <timest> RPC call. It's far better to keep polling for new received payments/sent payments, import them into your database and then act on it. Using bitcoin internal accounts is very bad in general. Title: Re: Bitcoind for PHP Post by: laanwj on July 01, 2011, 04:29:39 PM Using bitcoin internal accounts is very bad in general. Why? And shouldn't this be fixed by fixing the account system, instead of hacking around it with a language-specific layer of abstraction?Title: Re: Bitcoind for PHP Post by: genjix on July 02, 2011, 08:03:26 PM There are no hacks. Check the commit logs.
Title: Re: Bitcoind for PHP Post by: Leon on July 15, 2011, 06:47:25 PM https://gitorious.org/intersango/bitcoind I recommend this version of Bitcoin for people. Uses strings ("100000000") instead of doubles (1.0) for the RPC interface. And listreceivedsince <timest> RPC call. It's far better to keep polling for new received payments/sent payments, import them into your database and then act on it. Using bitcoin internal accounts is very bad in general. Nice! :o Title: Re: Bitcoind for PHP Post by: blueadept on September 02, 2011, 05:13:32 PM Thanks for this. I'm using Python with it so the format of the amount isn't quite as important, but the "listreceivedsince" method is very useful.
|