Skip to content

Commit 4bf01ee

Browse files
authored
Merge pull request #1 from mathwallet/Dapp
Dapp
2 parents 03c4199 + e10725d commit 4bf01ee

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Package.resolved

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ let package = Package(
1919
.package(name: "Secp256k1Swift", url: "https://github.com/mathwallet/Secp256k1Swift.git", from: "1.3.1"),
2020
.package(name: "Base58Swift", url: "https://github.com/mathwallet/Base58Swift.git", from: "0.0.1"),
2121
.package(name: "TweetNacl", url: "https://github.com/lishuailibertine/tweetnacl-swiftwrap", from: "1.0.3"),
22-
.package(url: "https://github.com/Flight-School/AnyCodable.git", .exact("0.6.0")),
22+
.package(url: "https://github.com/Flight-School/AnyCodable.git", .exact("0.6.1")),
2323
.package(url: "https://github.com/mxcl/PromiseKit.git", from: "6.16.2")
2424
],
2525
targets: [

Sources/NearSwift/Utils/BinaryReader.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ public struct BinaryReader {
1111
private var cursor: Int
1212
private let bytes: [UInt8]
1313

14-
init(bytes: [UInt8]) {
14+
public init(bytes: [UInt8]) {
1515
self.cursor = 0
1616
self.bytes = bytes
1717
}

0 commit comments

Comments
 (0)