Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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
Example #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