Bitcoin Forum
June 23, 2024, 12:27:36 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Electrum / Unprocessed transaction with spam spend input on: October 26, 2013, 08:33:35 PM
We are using Electrum server to send outgoing transactions from our system. Someone sent spam spends of 1 Satoshi onto our address, which then was used as an input for outgoing transaction and now this transaction and the following transactions do not get included in a block. Please help what can be done about this. Is our transaction http://btclook.com/txn/3e47cd79bbfc2f3f0a99ad506e3ab3b94c19d64d6d026989d408a6e4feb0acbe ever going to be included in a block?
2  Bitcoin / Electrum / Re: Electrum server discussion thread on: October 26, 2013, 06:47:58 PM
Hello, im trying to setup my own electrum server, everything seems to be ok. I downloaded the leveldb database file and synchronized to current. Server has started, but if I try to connect to it with my wallet, it got stuck on Synchronizing.
In the server log I can see:
Code:
[26/10/2013-19:53:08] SSL  217.112.174.177  1BXYiMpoWZVwfxHGrh34FYghKrDtEJdD41  30 1.7.3
But my local wallet got frozen and displays "Synchronizing..." on the status bar. There is not much load on the server, so I dont know what went wrong? When I connect to any other public server with my wallet, everything is ok.
The server is running further and processing blocks, but wallet is still saying "Synchronizing..."
Can anyone help, please?
3  Bitcoin / Development & Technical Discussion / Python / twisted & bitcoin JSONRPC api on: June 09, 2011, 05:41:59 PM
Hello,

I am trying to comunnicate with the bitcoin daemon using python and twisted. But when I try to use the txjsonrpc it did not work. Here is the example:

Code:
from twisted.internet import reactor, defer
from txjsonrpc.web import jsonrpc
from txjsonrpc.jsonrpclib import Fault, VERSION_PRE1, VERSION_1, VERSION_2

proxyAuth = jsonrpc.Proxy(('user:pass@ip:port'))

dl = []
d = proxyAuth.callRemote('getinfo', version=VERSION_1)
d.addCallbacks(cbOk, cbErr)
dl.append(d)
dl = defer.DeferredList(dl)
dl.addCallback(shutDown)
reactor.run()

But from the daemon I got:

Code:
500 Internal Server Error

I also tried the jsonrpc libs mentioned in the bitcoin api documentation, which did work. But I can not use them, since i need to use the twisted deferred logic.

I was tracking the communication using wireshar and I am afraid the problem is, that twisted is using HTTP/1.0 protocol and jsonrpc is using HTTP/1.1, so the communication behaves differently. I was trying to find some solution, but I getting stuck.

Is here anyone using twisted and bitcoin API? Please can you point me to the good direction?

Thank you in advance.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!