Skip to content

Commit 68d6bb0

Browse files
chore: removed redundant self. use
1 parent 1381c98 commit 68d6bb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/Web3Core/Transaction/Envelope/LegacyEnvelope.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ extension LegacyEnvelope {
197197
case .transaction:
198198
fields = [nonce, gasPrice, gasLimit, to.addressData, value, data, v, r, s].toAnyObject()
199199
case .signature:
200-
if let chainID = self.chainID, chainID != 0 {
200+
if let chainID = chainID, chainID != 0 {
201201
fields = [nonce, gasPrice, gasLimit, to.addressData, value, data, chainID, BigUInt(0), BigUInt(0)].toAnyObject()
202202
} else {
203203
fields = [nonce, gasPrice, gasLimit, to.addressData, value, data].toAnyObject()

0 commit comments

Comments
 (0)