Skip to content

Commit

Permalink
Merge pull request #35 from KeystoneHQ/fix-int
Browse files Browse the repository at this point in the history
fix: value type from int32 to int64
  • Loading branch information
LiYanLance authored Mar 1, 2024
2 parents 7eea7d8 + 8d4f713 commit a38adff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion KeystoneSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |spec|
spec.name = "KeystoneSDK"
spec.version = "0.6.5"
spec.version = "0.6.6"
spec.summary = "A library to simplify the way how software wallets communicate with the Keystone hardware wallet via UR."
spec.homepage = "https://github.com/KeystoneHQ/keystone-sdk-ios"
spec.license = { :type => 'Copyright', :text => 'Copyright 2023 Keystone' }
Expand Down
4 changes: 2 additions & 2 deletions Sources/KeystoneSDK/Model/KeystoneSign/KeystoneCommon.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ public struct Input: Codable {

public struct Output: Codable {
let address: String
let value: Int32
let value: Int64
let isChange: Bool
let changeAddressPath: String

public init(address: String, value: Int32, isChange: Bool = false, changeAddressPath: String = "") {
public init(address: String, value: Int64, isChange: Bool = false, changeAddressPath: String = "") {
self.address = address
self.value = value
self.isChange = isChange
Expand Down

0 comments on commit a38adff

Please sign in to comment.