Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
Elixxir dApps SDK Swift
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile
iOS
Elixxir dApps SDK Swift
Commits
bc846695
Commit
bc846695
authored
2 years ago
by
Dariusz Rybicki
Browse files
Options
Downloads
Patches
Plain Diff
Remove CMixIncreaseParallelNodeRegistration
parent
122fc739
No related branches found
No related tags found
2 merge requests
!130
Update Bindings
,
!102
Release 1.0.0
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Sources/XXClient/CMix/CMix.swift
+0
-3
0 additions, 3 deletions
Sources/XXClient/CMix/CMix.swift
Sources/XXClient/CMix/Functions/CMixIncreaseParallelNodeRegistration.swift
+0
-24
0 additions, 24 deletions
...CMix/Functions/CMixIncreaseParallelNodeRegistration.swift
with
0 additions
and
27 deletions
Sources/XXClient/CMix/CMix.swift
+
0
−
3
View file @
bc846695
...
...
@@ -8,7 +8,6 @@ public struct CMix {
public
var
getNodeRegistrationStatus
:
CMixGetNodeRegistrationStatus
public
var
hasRunningProcesses
:
CMixHasRunningProcesses
public
var
getRunningProcesses
:
CMixGetRunningProcesses
public
var
increaseParallelNodeRegistration
:
CMixIncreaseParallelNodeRegistration
public
var
networkFollowerStatus
:
CMixNetworkFollowerStatus
public
var
startNetworkFollower
:
CMixStartNetworkFollower
public
var
stopNetworkFollower
:
CMixStopNetworkFollower
...
...
@@ -29,7 +28,6 @@ extension CMix {
getNodeRegistrationStatus
:
.
live
(
bindingsCMix
),
hasRunningProcesses
:
.
live
(
bindingsCMix
),
getRunningProcesses
:
.
live
(
bindingsCMix
),
increaseParallelNodeRegistration
:
.
live
(
bindingsCMix
),
networkFollowerStatus
:
.
live
(
bindingsCMix
),
startNetworkFollower
:
.
live
(
bindingsCMix
),
stopNetworkFollower
:
.
live
(
bindingsCMix
),
...
...
@@ -51,7 +49,6 @@ extension CMix {
getNodeRegistrationStatus
:
.
unimplemented
,
hasRunningProcesses
:
.
unimplemented
,
getRunningProcesses
:
.
unimplemented
,
increaseParallelNodeRegistration
:
.
unimplemented
,
networkFollowerStatus
:
.
unimplemented
,
startNetworkFollower
:
.
unimplemented
,
stopNetworkFollower
:
.
unimplemented
,
...
...
This diff is collapsed.
Click to expand it.
Sources/XXClient/CMix/Functions/CMixIncreaseParallelNodeRegistration.swift
deleted
100644 → 0
+
0
−
24
View file @
122fc739
import
Bindings
import
XCTestDynamicOverlay
public
struct
CMixIncreaseParallelNodeRegistration
{
public
var
run
:
(
Int
)
throws
->
Void
public
func
callAsFunction
(
num
:
Int
)
throws
{
try
run
(
num
)
}
}
extension
CMixIncreaseParallelNodeRegistration
{
public
static
func
live
(
_
bindingsCMix
:
BindingsCmix
)
->
CMixIncreaseParallelNodeRegistration
{
CMixIncreaseParallelNodeRegistration
(
run
:
bindingsCMix
.
increaseParallelNodeRegistration
)
}
}
extension
CMixIncreaseParallelNodeRegistration
{
public
static
let
unimplemented
=
CMixIncreaseParallelNodeRegistration
(
run
:
XCTestDynamicOverlay
.
unimplemented
(
"
\(
Self
.
self
)
"
)
)
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment