This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Description
I get this error when trying to archive for App Store upload. Xcode 10
Transaction.swift
static func dataForSignature(chainId: String?, pkt: PackedTransaction) -> Data {
...
writer.pushInt(value: Int(UInt32(pkt.transaction.expiration.timeIntervalSince1970) & 0xFFFFFFFF))
writer.pushShort(value: pkt.transaction.refBlockNum & 0xFFFF)
writer.pushInt(value: Int(pkt.transaction.refBlockPrefix & 0xFFFFFFFF))
// ^ Integer literal '4294967295' overflows when stored into 'Int'
...
}
Any suggestions on how to fix this?