You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.7 KiB
98 lines
2.7 KiB
#include <ccan/err/err.h>
|
|
#include <ccan/opt/opt.h>
|
|
#include <ccan/read_write_all/read_write_all.h>
|
|
#include "bitcoin/tx.h"
|
|
#include "bitcoin/signature.h"
|
|
#include "lightning.pb-c.h"
|
|
#include "pkt.h"
|
|
#include "bitcoin/script.h"
|
|
#include "bitcoin/address.h"
|
|
#include "bitcoin/base58.h"
|
|
#include "anchor.h"
|
|
#include "bitcoin/pubkey.h"
|
|
#include "bitcoin/privkey.h"
|
|
|
|
#include <unistd.h>
|
|
|
|
/* All the input scripts are already set to 0. We just need to make this one. */
|
|
static u8 *tx_scriptsig(const tal_t *ctx,
|
|
struct bitcoin_tx *tx,
|
|
unsigned int i,
|
|
const BitcoinInput *input,
|
|
struct privkey *privkey,
|
|
const struct pubkey *pubkey)
|
|
{
|
|
struct bitcoin_signature sig;
|
|
|
|
sig.stype = SIGHASH_ALL;
|
|
if (!sign_tx_input(ctx, tx, i,
|
|
input->subscript.data, input->subscript.len,
|
|
privkey, pubkey, &sig.sig))
|
|
return NULL;
|
|
|
|
if (!is_pay_to_pubkey_hash(input->subscript.data, input->subscript.len))
|
|
errx(1, "FIXME: Don't know how to handle input");
|
|
return scriptsig_pay_to_pubkeyhash(ctx, pubkey, &sig);
|
|
}
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
OpenChannel *o1, *o2;
|
|
const tal_t *ctx = tal_arr(NULL, char, 0);
|
|
struct bitcoin_tx *anchor;
|
|
struct pkt *pkt;
|
|
size_t i;
|
|
u8 **sigs;
|
|
size_t *map;
|
|
|
|
err_set_progname(argv[0]);
|
|
|
|
opt_register_noarg("--help|-h", opt_usage_and_exit,
|
|
"<open-channel-file1> <open-channel-file2> <privkey>...\n"
|
|
"Create signatures for transactions, and output to stdout",
|
|
"Print this message.");
|
|
|
|
opt_parse(&argc, argv, opt_log_stderr_exit);
|
|
|
|
if (argc < 3)
|
|
opt_usage_exit_fail("Expected 2 or more arguments");
|
|
|
|
o1 = pkt_from_file(argv[1], PKT__PKT_OPEN)->open;
|
|
o2 = pkt_from_file(argv[2], PKT__PKT_OPEN)->open;
|
|
|
|
/* FIXME: We should check that their locktime is sane here,
|
|
* since we're bound to it. Also min_confirms, etc. */
|
|
|
|
/* Create merged transaction */
|
|
anchor = anchor_tx_create(ctx, o1, o2, &map, NULL);
|
|
if (!anchor)
|
|
errx(1, "Failed transaction merge");
|
|
|
|
/* Sign our inputs. */
|
|
if (o1->anchor->n_inputs != argc - 3)
|
|
errx(1, "Expected %zu private keys", o1->anchor->n_inputs);
|
|
|
|
sigs = tal_arr(ctx, u8 *, o1->anchor->n_inputs);
|
|
for (i = 0; i < o1->anchor->n_inputs; i++) {
|
|
struct pubkey pubkey;
|
|
struct privkey privkey;
|
|
bool testnet;
|
|
|
|
if (!key_from_base58(argv[3+i], strlen(argv[3+i]),
|
|
&testnet, &privkey, &pubkey))
|
|
errx(1, "Invalid private key '%s'", argv[3+i]);
|
|
if (!testnet)
|
|
errx(1, "Private key '%s' not on testnet!", argv[3+i]);
|
|
|
|
sigs[i] = tx_scriptsig(sigs, anchor, map[i],
|
|
o1->anchor->inputs[i],
|
|
&privkey, &pubkey);
|
|
}
|
|
|
|
pkt = open_anchor_sig_pkt(ctx, sigs, o1->anchor->n_inputs);
|
|
if (!write_all(STDOUT_FILENO, pkt, pkt_totlen(pkt)))
|
|
err(1, "Writing out packet");
|
|
|
|
tal_free(ctx);
|
|
return 0;
|
|
}
|
|
|