remove computed property from protocol

This commit is contained in:
Francisco Gindre 2020-10-14 20:30:22 -03:00
parent 229ae3192a
commit b8d83adb92
1 changed files with 1 additions and 3 deletions

View File

@ -122,9 +122,6 @@ public protocol ConfirmedTransactionEntity: MinedTransactionEntity, SignedTransa
*/
var expiryHeight: BlockHeight? { get set }
var isOutbound: Bool { get }
var isInbound: Bool { get }
}
@ -135,4 +132,5 @@ public extension ConfirmedTransactionEntity {
var isInbound: Bool {
self.toAddress == nil
}
}