(tx)
| 287 | |
| 288 | |
| 289 | def helloblock_pushtx(tx): |
| 290 | if not re.match('^[0-9a-fA-F]*$', tx): |
| 291 | tx = tx.encode('hex') |
| 292 | return make_request('https://mainnet.helloblock.io/v1/transactions', |
| 293 | 'rawTxHex='+tx) |
| 294 | |
| 295 | pushtx_getters = { |
| 296 | 'bci': bci_pushtx, |
nothing calls this directly
no test coverage detected