Skip to content

Commit

Permalink
fix init
Browse files Browse the repository at this point in the history
  • Loading branch information
ERussel committed Dec 14, 2023
1 parent 429d1c2 commit b48942e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions SubstrateSdk/Classes/Runtime/Nodes/Items/TypeNode.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public struct NameNode {
public let name: String
public let node: Node

init(name: String, node: Node) {
public init(name: String, node: Node) {
self.name = name
self.node = node
}
Expand All @@ -19,7 +19,7 @@ public struct IndexedNameNode {
public let name: String
public let node: Node

init(index: UInt8, name: String, node: Node) {
public init(index: UInt8, name: String, node: Node) {
self.index = index
self.name = name
self.node = node
Expand Down

0 comments on commit b48942e

Please sign in to comment.