Skip to content
Snippets Groups Projects
Commit adca4bfa authored by Dariusz Rybicki's avatar Dariusz Rybicki
Browse files

Fix MessageSendReport initializer

parent ee82e70b
No related branches found
No related tags found
2 merge requests!13Update Bindings,!8Clean up latest merge
...@@ -2,9 +2,9 @@ import Foundation ...@@ -2,9 +2,9 @@ import Foundation
public struct MessageSendReport: Equatable { public struct MessageSendReport: Equatable {
public init( public init(
roundList: [Int], roundList: [Int]?,
messageId: Data, messageId: Data?,
timestamp: Int timestamp: Int?
) { ) {
self.roundList = roundList self.roundList = roundList
self.messageId = messageId self.messageId = messageId
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment