We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64165fd commit df76c89Copy full SHA for df76c89
src/main/kotlin/com/casper/sdk/clvalue/CLParsed.kt
@@ -295,9 +295,9 @@ class CLParsed {
295
if(clParsed.innerParsed1.itsCLType.isCLTypePrimitive()) {
296
resultStr = getParsedPrimitive(clParsed.innerParsed1)
297
} else {
298
- resultStr = getParsedCompound(clParsed.innerParsed2)
+ resultStr = getParsedCompound(clParsed.innerParsed1)
299
}
300
- return "{" + clParsed.itsValueInStr + ":" + resultStr + "}}" //}?
+ return "{" + clParsed.itsValueInStr + ":" + resultStr + "}"
301
} else if(clParsed.itsCLType.itsTypeStr == ConstValues.CLTYPE_MAP) {
302
val totalElement = clParsed.innerParsed1.itsArrayValue.size
303
if(totalElement == 0 ) {
0 commit comments