Skip to content

Commit

Permalink
fix: ada amount type
Browse files Browse the repository at this point in the history
  • Loading branch information
soralit committed Nov 27, 2024
1 parent 34e6ad6 commit 721e73f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/KeystoneSDK/Model/CardanoSignRequest.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public struct CardanoSignRequest {
let origin: String

public struct Utxo: Codable {
public init(transactionHash: String, index: UInt32, amount: UInt64, xfp: String, hdPath: String, address: String) {
public init(transactionHash: String, index: UInt32, amount: String, xfp: String, hdPath: String, address: String) {
self.transactionHash = transactionHash
self.index = index
self.amount = amount
Expand All @@ -34,7 +34,7 @@ public struct CardanoSignRequest {

let transactionHash: String
let index: UInt32
let amount: UInt64
let amount: String
let xfp: String
let hdPath: String
let address: String
Expand Down

0 comments on commit 721e73f

Please sign in to comment.