Skip to content

Commit

Permalink
Merge pull request #6 from soramitsu/feature/junction-factory
Browse files Browse the repository at this point in the history
Feature/junction factory
  • Loading branch information
ERussel authored Jul 28, 2020
2 parents cbb67f6 + ff388bf commit 06a2ab1
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 62 deletions.
8 changes: 0 additions & 8 deletions Crypto/Chaincode.swift

This file was deleted.

8 changes: 0 additions & 8 deletions Crypto/KeypairFactory.swift

This file was deleted.

8 changes: 0 additions & 8 deletions Crypto/SR25519KeypairFactory.swift

This file was deleted.

36 changes: 0 additions & 36 deletions Crypto/SeedFactory.swift

This file was deleted.

3 changes: 2 additions & 1 deletion FearlessUtils.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'FearlessUtils'
s.version = '0.1.0'
s.version = '0.2.0'
s.summary = 'Utility library that implements clients specific logic to interact with substrate based networks'

s.homepage = 'https://github.com/soramitsu/fearless-utils-iOS'
Expand All @@ -27,5 +27,6 @@ Pod::Spec.new do |s|

s.test_spec do |ts|
ts.source_files = 'Tests/**/*.swift'
ts.resources = ['Tests/**/*.json']
end
end
3 changes: 2 additions & 1 deletion Tests/Crypto/KeypairDeriviationTests.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ import FearlessUtils
class KeypairDeriviationTests: XCTestCase {

func testSr25519FromTestVectors() throws {
guard let url = Bundle(for: Self.self).url(forResource: "sr25519HDKD", withExtension: "json") else {
guard let url = Bundle(for: KeypairDeriviationTests.self)
.url(forResource: "sr25519HDKD", withExtension: "json") else {
XCTFail("Can't find resource")
return
}
Expand Down

0 comments on commit 06a2ab1

Please sign in to comment.