mirror of
https://github.com/aljazceru/lightning.git
synced 2026-01-24 08:14:19 +01:00
tx: centralize transaction writing, append amounts for alpha.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include <ccan/structeq/structeq.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
@@ -24,9 +23,7 @@ int main(int argc, char *argv[])
|
||||
OpenAnchorScriptsigs *ss1, *ss2;
|
||||
struct bitcoin_tx *anchor;
|
||||
struct sha256_double txid;
|
||||
u8 *tx_arr;
|
||||
size_t *inmap, *outmap;
|
||||
char *tx_hex;
|
||||
|
||||
err_set_progname(argv[0]);
|
||||
|
||||
@@ -55,12 +52,7 @@ int main(int argc, char *argv[])
|
||||
|
||||
bitcoin_txid(anchor, &txid);
|
||||
|
||||
/* Print it out in hex. */
|
||||
tx_arr = linearize_tx(ctx, anchor);
|
||||
tx_hex = tal_arr(tx_arr, char, hex_str_size(tal_count(tx_arr)));
|
||||
hex_encode(tx_arr, tal_count(tx_arr), tx_hex, tal_count(tx_hex));
|
||||
|
||||
if (!write_all(STDOUT_FILENO, tx_hex, strlen(tx_hex)))
|
||||
if (!bitcoin_tx_write(STDOUT_FILENO, anchor))
|
||||
err(1, "Writing out anchor transaction");
|
||||
|
||||
tal_free(ctx);
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
#include "bitcoin/base58.h"
|
||||
@@ -25,11 +24,10 @@ int main(int argc, char *argv[])
|
||||
OpenCommitSig *cs2;
|
||||
struct bitcoin_tx *anchor, *commit;
|
||||
struct sha256_double txid;
|
||||
u8 *tx_arr, *subscript;
|
||||
u8 *subscript;
|
||||
size_t *inmap, *outmap;
|
||||
struct pubkey pubkey1, pubkey2;
|
||||
struct bitcoin_signature sig1, sig2;
|
||||
char *tx_hex;
|
||||
struct privkey privkey;
|
||||
bool testnet;
|
||||
struct sha256 rhash;
|
||||
@@ -101,11 +99,7 @@ int main(int argc, char *argv[])
|
||||
commit->input[0].script_length = tal_count(commit->input[0].script);
|
||||
|
||||
/* Print it out in hex. */
|
||||
tx_arr = linearize_tx(ctx, commit);
|
||||
tx_hex = tal_arr(tx_arr, char, hex_str_size(tal_count(tx_arr)));
|
||||
hex_encode(tx_arr, tal_count(tx_arr), tx_hex, tal_count(tx_hex));
|
||||
|
||||
if (!write_all(STDOUT_FILENO, tx_hex, strlen(tx_hex)))
|
||||
if (!bitcoin_tx_write(STDOUT_FILENO, commit))
|
||||
err(1, "Writing out transaction");
|
||||
|
||||
tal_free(ctx);
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
#include "bitcoin/base58.h"
|
||||
@@ -26,8 +25,7 @@ int main(int argc, char *argv[])
|
||||
struct sha256_double anchor_txid;
|
||||
struct bitcoin_signature sig1, sig2;
|
||||
struct pubkey pubkey1, pubkey2;
|
||||
u8 *redeemscript, *tx_arr;
|
||||
char *tx_hex;
|
||||
u8 *redeemscript;
|
||||
CloseChannel *close;
|
||||
CloseChannelComplete *closecomplete;
|
||||
size_t i;
|
||||
@@ -92,11 +90,7 @@ int main(int argc, char *argv[])
|
||||
close_tx->input[0].script_length = tal_count(close_tx->input[0].script);
|
||||
|
||||
/* Print it out in hex. */
|
||||
tx_arr = linearize_tx(ctx, close_tx);
|
||||
tx_hex = tal_arr(tx_arr, char, hex_str_size(tal_count(tx_arr)));
|
||||
hex_encode(tx_arr, tal_count(tx_arr), tx_hex, tal_count(tx_hex));
|
||||
|
||||
if (!write_all(STDOUT_FILENO, tx_hex, strlen(tx_hex)))
|
||||
if (!bitcoin_tx_write(STDOUT_FILENO, close_tx))
|
||||
err(1, "Writing out transaction");
|
||||
|
||||
tal_free(ctx);
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include <ccan/structeq/structeq.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
@@ -31,8 +30,7 @@ int main(int argc, char *argv[])
|
||||
struct privkey privkey;
|
||||
bool testnet;
|
||||
struct pubkey pubkey1, pubkey2, outpubkey;
|
||||
u8 *redeemscript, *tx_arr;
|
||||
char *tx_hex;
|
||||
u8 *redeemscript;
|
||||
struct sha256 rhash;
|
||||
size_t i, p2sh_out;
|
||||
u64 fee = 10000;
|
||||
@@ -120,11 +118,7 @@ int main(int argc, char *argv[])
|
||||
tx->input[0].script_length = tal_count(tx->input[0].script);
|
||||
|
||||
/* Print it out in hex. */
|
||||
tx_arr = linearize_tx(ctx, tx);
|
||||
tx_hex = tal_arr(tx_arr, char, hex_str_size(tal_count(tx_arr)));
|
||||
hex_encode(tx_arr, tal_count(tx_arr), tx_hex, tal_count(tx_hex));
|
||||
|
||||
if (!write_all(STDOUT_FILENO, tx_hex, strlen(tx_hex)))
|
||||
if (!bitcoin_tx_write(STDOUT_FILENO, tx))
|
||||
err(1, "Writing out transaction");
|
||||
|
||||
tal_free(ctx);
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
#include "bitcoin/base58.h"
|
||||
@@ -32,8 +31,7 @@ int main(int argc, char *argv[])
|
||||
struct bitcoin_signature sig1, sig2;
|
||||
size_t i;
|
||||
struct pubkey pubkey1, pubkey2;
|
||||
u8 *redeemscript, *tx_arr;
|
||||
char *tx_hex;
|
||||
u8 *redeemscript;
|
||||
int64_t delta;
|
||||
struct sha256 rhash;
|
||||
|
||||
@@ -121,11 +119,7 @@ int main(int argc, char *argv[])
|
||||
commit->input[0].script_length = tal_count(commit->input[0].script);
|
||||
|
||||
/* Print it out in hex. */
|
||||
tx_arr = linearize_tx(ctx, commit);
|
||||
tx_hex = tal_arr(tx_arr, char, hex_str_size(tal_count(tx_arr)));
|
||||
hex_encode(tx_arr, tal_count(tx_arr), tx_hex, tal_count(tx_hex));
|
||||
|
||||
if (!write_all(STDOUT_FILENO, tx_hex, strlen(tx_hex)))
|
||||
if (!bitcoin_tx_write(STDOUT_FILENO, commit))
|
||||
err(1, "Writing out transaction");
|
||||
|
||||
tal_free(ctx);
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
#include "bitcoin/base58.h"
|
||||
@@ -25,11 +24,10 @@ int main(int argc, char *argv[])
|
||||
OpenChannel *o1, *o2;
|
||||
Pkt *pkt;
|
||||
struct bitcoin_tx *commit, *tx;
|
||||
u8 *tx_arr, *redeemscript, *p2sh;
|
||||
u8 *redeemscript, *p2sh;
|
||||
size_t i;
|
||||
struct pubkey pubkey1, pubkey2, outpubkey;
|
||||
struct bitcoin_signature sig;
|
||||
char *tx_hex;
|
||||
struct privkey privkey;
|
||||
bool testnet;
|
||||
u32 locktime_seconds;
|
||||
@@ -123,11 +121,7 @@ int main(int argc, char *argv[])
|
||||
tx->input[0].script_length = tal_count(tx->input[0].script);
|
||||
|
||||
/* Print it out in hex. */
|
||||
tx_arr = linearize_tx(ctx, tx);
|
||||
tx_hex = tal_arr(tx_arr, char, hex_str_size(tal_count(tx_arr)));
|
||||
hex_encode(tx_arr, tal_count(tx_arr), tx_hex, tal_count(tx_hex));
|
||||
|
||||
if (!write_all(STDOUT_FILENO, tx_hex, strlen(tx_hex)))
|
||||
if (!bitcoin_tx_write(STDOUT_FILENO, tx))
|
||||
err(1, "Writing out transaction");
|
||||
|
||||
tal_free(ctx);
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#include <ccan/opt/opt.h>
|
||||
#include <ccan/str/hex/hex.h>
|
||||
#include <ccan/err/err.h>
|
||||
#include <ccan/read_write_all/read_write_all.h>
|
||||
#include "lightning.pb-c.h"
|
||||
#include "anchor.h"
|
||||
#include "bitcoin/base58.h"
|
||||
|
||||
Reference in New Issue
Block a user