Skip to content

Commit

Permalink
Merge branch 'main' into feature/token-2022
Browse files Browse the repository at this point in the history
  • Loading branch information
TrGiLong committed Jan 15, 2024
2 parents 2cbdb61 + d39aeb8 commit 44fe66b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/SolanaSwift/Models/Message/MessageHeader.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ import Foundation
public struct MessageHeader: Decodable, Equatable {
static let LENGTH = 3

var numRequiredSignatures: Int = 0
var numReadonlySignedAccounts: Int = 0
var numReadonlyUnsignedAccounts: Int = 0
public internal(set) var numRequiredSignatures: Int = 0
public internal(set) var numReadonlySignedAccounts: Int = 0
public internal(set) var numReadonlyUnsignedAccounts: Int = 0

var bytes: [UInt8] {
[UInt8(numRequiredSignatures), UInt8(numReadonlySignedAccounts), UInt8(numReadonlyUnsignedAccounts)]
Expand Down

0 comments on commit 44fe66b

Please sign in to comment.