File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 771
771
isa = XCBuildConfiguration;
772
772
buildSettings = {
773
773
CODE_SIGN_STYLE = Automatic;
774
- DEVELOPMENT_TEAM = 9T7JPNQ2UD ;
774
+ DEVELOPMENT_TEAM = "" ;
775
775
FRAMEWORK_SEARCH_PATHS = (
776
776
"$(inherited)",
777
777
"$(PROJECT_DIR)/Carthage/Build/iOS",
792
792
isa = XCBuildConfiguration;
793
793
buildSettings = {
794
794
CODE_SIGN_STYLE = Automatic;
795
- DEVELOPMENT_TEAM = 9T7JPNQ2UD ;
795
+ DEVELOPMENT_TEAM = "" ;
796
796
FRAMEWORK_SEARCH_PATHS = (
797
797
"$(inherited)",
798
798
"$(PROJECT_DIR)/Carthage/Build/iOS",
Original file line number Diff line number Diff line change @@ -27,6 +27,14 @@ final class NetworkTests: XCTestCase {
27
27
XCTAssert ( network. publicKeyPrefix == 0x043587cf )
28
28
}
29
29
30
+ func testRinkeby( ) {
31
+ let network = Network . rinkeby
32
+ XCTAssert ( network. chainID == 4 )
33
+ XCTAssert ( network. coinType == 1 )
34
+ XCTAssert ( network. privateKeyPrefix == 0x04358394 )
35
+ XCTAssert ( network. publicKeyPrefix == 0x043587cf )
36
+ }
37
+
30
38
func testPrivateNetTestUse( ) {
31
39
let network = Network . private ( chainID: 100 , testUse: true )
32
40
XCTAssert ( network. chainID == 100 )
@@ -56,6 +64,10 @@ final class NetworkTests: XCTestCase {
56
64
XCTAssertNotNil ( kovanNetwork)
57
65
XCTAssertEqual ( kovanNetwork, Network . kovan)
58
66
67
+ let rinkebyNetwork = Network ( name: " rinkeby " )
68
+ XCTAssertNotNil ( rinkebyNetwork)
69
+ XCTAssertEqual ( rinkebyNetwork, Network . rinkeby)
70
+
59
71
let privateNetwork = Network ( name: " private " , chainID: 1 , testUse: false )
60
72
XCTAssertNotNil ( privateNetwork)
61
73
XCTAssertEqual ( privateNetwork, Network . private ( chainID: 1 , testUse: false ) )
You can’t perform that action at this time.
0 commit comments