mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-22 15:04:50 +01:00
16 lines
408 B
Swift
16 lines
408 B
Swift
//
|
|
// Models.swift
|
|
// BlueWallet
|
|
//
|
|
// Created by Marcos Rodriguez on 11/1/20.
|
|
// Copyright © 2020 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
|
|
|
|
let emptyMarketData = MarketData(nextBlock: "...", sats: "...", price: "...", rate: 0)
|
|
let emptyWalletData = WalletData(balance: 0, latestTransactionTime: LatestTransaction(isUnconfirmed: false, epochValue: Int(Date().timeIntervalSince1970)))
|
|
|
|
|