Skip to content

Commit

Permalink
Added flag allowPartial
Browse files Browse the repository at this point in the history
  • Loading branch information
mdorofeev committed Jun 15, 2022
1 parent 657d188 commit 8bc64d8
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/kotlin/ee/nx01/tonclient/abi/Types.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ data class ParamsOfEncodeAccount(
data class ParamsOfDecodeMessageBody(
val abi: Abi,
val body: String,
val isInternal: Boolean
val isInternal: Boolean,
val allowPartial: Boolean? = null
)

data class StateInitSource(
Expand Down Expand Up @@ -208,7 +209,8 @@ data class ResultOfDecodeData(

data class ParamsOfDecodeInitialData(
val abi: Abi? = null,
val data: String
val data: String,
val allowPartial: Boolean? = null
)

data class ResultOfDecodeInitialData(
Expand Down

0 comments on commit 8bc64d8

Please sign in to comment.