Could Deploy
and Version1
appear together in the same category in chain-get-block
's JSON RPC response?
#102
Unanswered
devendran-m
asked this question in
Q&A
Replies: 1 comment
-
Yes, they can appear together in the same category. The correct format is separate JSON objects in the array for each transaction type. For example: {
"transactions": {
"0": [
{ "Version1": "hash1" },
{ "Deploy": "hash2" }
]
}
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In
chain-get-block
's JSON RPC response, are theVersion1
andDeploy
separate JSON objects in the array, or could one object contain bothVersion1
andDeploy
?Beta Was this translation helpful? Give feedback.
All reactions