First test runs on remote, add U16, fix stuff

This commit is contained in:
Dominik Werder
2021-04-28 19:41:02 +02:00
parent e243f99bd7
commit bd70738e74
11 changed files with 110 additions and 58 deletions

View File

@@ -18,7 +18,12 @@ pub async fn channel_exists(channel: &Channel, node_config: &NodeConfig) -> Resu
.await?;
info!("channel_exists {} rows", rows.len());
for row in rows {
info!(" db on channel search: {:?}", row);
info!(
" db on channel search: {:?} {:?} {:?}",
row,
row.columns(),
row.get::<_, i64>(0)
);
}
drop(cjh);
Ok(true)