raiden-network-transport 0.1.0

Raiden network transport layer
Documentation
1
2
3
4
5
6
7
8
9
/// Matrix config table.
pub(super) const DB_CREATE_MATRIX_CONFIG: &str = "
CREATE TABLE IF NOT EXISTS matrix_config (sync_token TEXT);
";

/// Matrix messages table.
pub(super) const DB_CREATE_MATRIX_MESSAGES: &str = "
CREATE TABLE IF NOT EXISTS matrix_messages (data TEXT);
";