tari_ootle_wallet_storage_sqlite 0.30.3

The Tari wallet SQLite storage library
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//   Copyright 2025 The Tari Project
//   SPDX-License-Identifier: BSD-3-Clause

use diesel::Queryable;

#[derive(Debug, Clone, Queryable)]
pub struct UtxoProcessQueue {
    pub _id: i32,
    pub _account_id: i32,
    pub resource_address: String,
    pub utxo_tag: i32,
    pub public_nonce: String,
    pub _created_at: time::PrimitiveDateTime,
}