(tx)
| 254 | |
| 255 | # Pushes a transaction to the network using https://blockchain.info/pushtx |
| 256 | def bci_pushtx(tx): |
| 257 | if not re.match('^[0-9a-fA-F]*$', tx): |
| 258 | tx = tx.encode('hex') |
| 259 | return make_request('https://blockchain.info/pushtx', 'tx='+tx) |
| 260 | |
| 261 | |
| 262 | def eligius_pushtx(tx): |
nothing calls this directly
no test coverage detected