ZcashLightClientKit/Sources/ZcashLightClientKit/Repository/NotesRepository.swift

18 lines
318 B
Swift

//
// NotesRepository.swift
// ZcashLightClientKit
//
// Created by Francisco Gindre on 11/18/19.
//
import Foundation
protocol ReceivedNoteRepository {
func count() throws -> Int
}
protocol SentNotesRepository {
func getRecipients(for id: Int) -> [TransactionRecipient]
func count() throws -> Int
}