Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions documentation.swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -565,8 +565,9 @@
"type": "string",
"format": "byte"
},
"BlocksmithAddress": {
"type": "string"
"BlocksmithPublicKey": {
"type": "string",
"format": "byte"
},
"CumulativeDifficulty": {
"type": "string"
Expand Down Expand Up @@ -1509,5 +1510,19 @@
}
}
}
},
"x-stream-definitions": {
"modelGetNodeHardwareResponse": {
"properties": {
"error": {
"$ref": "#/definitions/runtimeStreamError"
},
"result": {
"$ref": "#/definitions/modelGetNodeHardwareResponse"
}
},
"title": "Stream result of modelGetNodeHardwareResponse",
"type": "object"
}
}
}
2 changes: 1 addition & 1 deletion model/block.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ message Block {
bytes BlockSignature = 6;
string CumulativeDifficulty = 7;
int64 SmithScale = 8 [jstype = JS_STRING];
string BlocksmithAddress = 9;
bytes BlocksmithPublicKey = 9;
int64 TotalAmount = 10 [jstype = JS_STRING];
int64 TotalFee = 11 [jstype = JS_STRING];
int64 TotalCoinBase = 12 [jstype = JS_STRING];
Expand Down