Browse Source

wallet/wallet.c: bind_null if (chan->remote_shutdown_scriptpubkey)

ppa-0.6.1
Jan Sarenik 7 years ago
committed by Rusty Russell
parent
commit
580b8ba8a9
  1. 2
      wallet/wallet.c

2
wallet/wallet.c

@ -911,6 +911,8 @@ void wallet_channel_save(struct wallet *w, struct channel *chan)
sqlite3_bind_blob(stmt, 16, chan->remote_shutdown_scriptpubkey,
tal_len(chan->remote_shutdown_scriptpubkey),
SQLITE_TRANSIENT);
else
sqlite3_bind_null(stmt, 16);
sqlite3_bind_int64(stmt, 17, chan->final_key_idx);
sqlite3_bind_int64(stmt, 18, chan->our_config.id);

Loading…
Cancel
Save