This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import sys | |
import time | |
import csv | |
import sqlite3 | |
from google.appengine.datastore import entity_pb | |
from google.appengine.api import datastore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from pycoin.encoding.hexbytes import b2h | |
from pycoin.intbytes import int2byte | |
from pycoin.key import Key | |
from pycoin.networks.registry import network_for_netcode | |
from pycoin.satoshi.der import sigencode_der | |
network = network_for_netcode('XTN') | |
Tx = network.tx | |
TxIn = network.tx.TxIn |