mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 23:38:57 +01:00
15 lines
250 B
Swift
15 lines
250 B
Swift
|
//
|
||
|
// LatestTransaction.swift
|
||
|
// BlueWallet
|
||
|
//
|
||
|
// Created by Marcos Rodriguez on 4/14/24.
|
||
|
// Copyright © 2024 BlueWallet. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
struct LatestTransaction {
|
||
|
let isUnconfirmed: Bool?
|
||
|
let epochValue: Int?
|
||
|
}
|