Add outputPool to NotesDao

This commit is contained in:
Francisco Gindre 2022-04-25 20:31:42 -03:00 committed by Kris Nuttycombe
parent 375cf3ce41
commit 23097ac8e0
1 changed files with 2 additions and 0 deletions

View File

@ -75,6 +75,7 @@ struct SentNote: SentNoteEntity, Codable {
enum CodingKeys: String, CodingKey { enum CodingKeys: String, CodingKey {
case id = "id_note" case id = "id_note"
case transactionId = "tx" case transactionId = "tx"
case outputPool = "output_pool"
case outputIndex = "output_index" case outputIndex = "output_index"
case account = "from_account" case account = "from_account"
case address case address
@ -84,6 +85,7 @@ struct SentNote: SentNoteEntity, Codable {
var id: Int var id: Int
var transactionId: Int var transactionId: Int
var outputPool: Int
var outputIndex: Int var outputIndex: Int
var account: Int var account: Int
var address: String var address: String