Skip to content

Commit

Permalink
fix the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Oct 19, 2024
1 parent 34ab0c1 commit 0de78f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ interface SigningKey {
val isSmartContractWallet: Boolean
get() = false

// Default chainId value set to 1
// The chainId of the Smart Contract Wallet value should be null if not SCW
var chainId: Long?
get() = null
set(_) {}
Expand Down
2 changes: 1 addition & 1 deletion library/src/main/java/xmtpv3.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9240,7 +9240,7 @@ public object FfiConverterMapStringBoolean :
// The parens on `(k, v)` here ensure we're calling the right method,
// which is important for compatibility with older android devices.
// Ref https://blog.danlew.net/2017/03/16/kotlin-puzzler-whose-line-is-it-anyways/
value.forEach { (k, v) ->
value.iterator().forEach { (k, v) ->
FfiConverterString.write(k, buf)
FfiConverterBoolean.write(v, buf)
}
Expand Down

0 comments on commit 0de78f8

Please sign in to comment.