Ejemplo n.º 1
0
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
Ejemplo n.º 2
0
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
Ejemplo n.º 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
Ejemplo n.º 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
Ejemplo n.º 5
0
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
Ejemplo n.º 6
0
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
Ejemplo n.º 7
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
Ejemplo n.º 8
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
Ejemplo n.º 9
0
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