From 23097ac8e04a39921bbfefda0dd8ab2de35631d4 Mon Sep 17 00:00:00 2001 From: Francisco Gindre Date: Mon, 25 Apr 2022 20:31:42 -0300 Subject: [PATCH] Add outputPool to NotesDao --- Sources/ZcashLightClientKit/DAO/NotesDao.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Sources/ZcashLightClientKit/DAO/NotesDao.swift b/Sources/ZcashLightClientKit/DAO/NotesDao.swift index 6bbe43d9..38470adb 100644 --- a/Sources/ZcashLightClientKit/DAO/NotesDao.swift +++ b/Sources/ZcashLightClientKit/DAO/NotesDao.swift @@ -75,6 +75,7 @@ struct SentNote: SentNoteEntity, Codable { enum CodingKeys: String, CodingKey { case id = "id_note" case transactionId = "tx" + case outputPool = "output_pool" case outputIndex = "output_index" case account = "from_account" case address @@ -84,6 +85,7 @@ struct SentNote: SentNoteEntity, Codable { var id: Int var transactionId: Int + var outputPool: Int var outputIndex: Int var account: Int var address: String