Skip to content

Commit

Permalink
Merge pull request #11 from Plazmathron/master
Browse files Browse the repository at this point in the history
Change access control of function fromRaw in struct EthereumTransaction
  • Loading branch information
shamatar committed Sep 5, 2018
2 parents c255819 + 6757436 commit c232d91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web3swift/Transaction/Classes/EthereumTransaction.swift
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ public struct EthereumTransaction: CustomStringConvertible {
return transaction
}

static func fromRaw(_ raw: Data) -> EthereumTransaction? {
public static func fromRaw(_ raw: Data) -> EthereumTransaction? {
guard let totalItem = RLP.decode(raw) else {return nil}
guard let rlpItem = totalItem[0] else {return nil}
switch rlpItem.count {
Expand Down

0 comments on commit c232d91

Please sign in to comment.