コード例 #1
0
ファイル: test_.py プロジェクト: chancecoin/counterpartyd
def test_send_callable():
    unsigned_tx_hex = bitcoin.transaction(
        send.compose(db, source_default, destination_default, 'BBBC', 10000),
        True)

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #2
0
ファイル: test_.py プロジェクト: chancecoin/counterpartyd
def test_send():
    unsigned_tx_hex = bitcoin.transaction(
        send.compose(db, source_default, destination_default, 'XCP', small),
        True)

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #3
0
def test_send_indivisible():
    unsigned_tx_hex = bitcoin.transaction(send.compose(
        db, source_default, destination_default, 'BBBC',
        round(quantity / 190000)),
                                          encoding='multisig')

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #4
0
def test_send():
    unsigned_tx_hex = bitcoin.transaction(send.compose(db, source_default,
                                                       destination_default,
                                                       config.XCP, small),
                                          encoding='multisig')

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #5
0
ファイル: test_.py プロジェクト: pepeteam/kekdaqd
def test_send_card_image():
    unsigned_tx_hex = bitcoin.transaction(send.compose(db, source_default,
                                                       destination_default,
                                                       'BBBC', 10000),
                                          encoding='multisig')

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #6
0
ファイル: test_.py プロジェクト: GrynnSan/clearinghoused
def test_send_callable ():
    unsigned_tx_hex = bitcoin.transaction(send.compose(db, source_default, destination_default, 'BBBC', 10000), encoding='multisig')

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #7
0
ファイル: test_.py プロジェクト: GrynnSan/clearinghoused
def test_send_indivisible ():
    unsigned_tx_hex = bitcoin.transaction(send.compose(db, source_default, destination_default, 'BBBC', round(quantity / 190000)), encoding='multisig')

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #8
0
ファイル: test_.py プロジェクト: GrynnSan/clearinghoused
def test_send ():
    unsigned_tx_hex = bitcoin.transaction(send.compose(db, source_default, destination_default, config.XCP, small), encoding='multisig')

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex
コード例 #9
0
ファイル: test_.py プロジェクト: biophil/counterpartyd
def test_send ():
    unsigned_tx_hex = bitcoin.transaction(send.compose(db, source_default, destination_default, 'XCP', small), True)

    parse_hex(unsigned_tx_hex)

    output_new[inspect.stack()[0][3]] = unsigned_tx_hex