mirror of
https://github.com/ElementsProject/lightning.git
synced 2025-03-03 10:46:58 +01:00
wallet: don't leak string on update.
We actually don't need tal_fmt() here at all, anyway. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
This commit is contained in:
parent
5a319c781c
commit
bbbbb60863
1 changed files with 21 additions and 21 deletions
|
@ -622,27 +622,27 @@ void wallet_channel_save(struct wallet *w, struct wallet_channel *chan){
|
|||
wallet_channel_config_save(w, &p->our_config);
|
||||
|
||||
/* Now do the real update */
|
||||
stmt = db_prepare(w->db, tal_fmt(w, "UPDATE channels SET"
|
||||
" shachain_remote_id=?,"
|
||||
" short_channel_id=?,"
|
||||
" state=?,"
|
||||
" funder=?,"
|
||||
" channel_flags=?,"
|
||||
" minimum_depth=?,"
|
||||
" next_index_local=?,"
|
||||
" next_index_remote=?,"
|
||||
" next_htlc_id=?,"
|
||||
" funding_tx_id=?,"
|
||||
" funding_tx_outnum=?,"
|
||||
" funding_satoshi=?,"
|
||||
" funding_locked_remote=?,"
|
||||
" push_msatoshi=?,"
|
||||
" msatoshi_local=?,"
|
||||
" shutdown_scriptpubkey_remote=?,"
|
||||
" shutdown_keyidx_local=?,"
|
||||
" channel_config_local=?,"
|
||||
" last_tx=?, last_sig=?"
|
||||
" WHERE id=?"));
|
||||
stmt = db_prepare(w->db, "UPDATE channels SET"
|
||||
" shachain_remote_id=?,"
|
||||
" short_channel_id=?,"
|
||||
" state=?,"
|
||||
" funder=?,"
|
||||
" channel_flags=?,"
|
||||
" minimum_depth=?,"
|
||||
" next_index_local=?,"
|
||||
" next_index_remote=?,"
|
||||
" next_htlc_id=?,"
|
||||
" funding_tx_id=?,"
|
||||
" funding_tx_outnum=?,"
|
||||
" funding_satoshi=?,"
|
||||
" funding_locked_remote=?,"
|
||||
" push_msatoshi=?,"
|
||||
" msatoshi_local=?,"
|
||||
" shutdown_scriptpubkey_remote=?,"
|
||||
" shutdown_keyidx_local=?,"
|
||||
" channel_config_local=?,"
|
||||
" last_tx=?, last_sig=?"
|
||||
" WHERE id=?");
|
||||
sqlite3_bind_int64(stmt, 1, p->their_shachain.id);
|
||||
if (p->scid)
|
||||
sqlite3_bind_short_channel_id(stmt, 2, p->scid);
|
||||
|
|
Loading…
Add table
Reference in a new issue