Closed ishantiw closed 11 months ago
Currently when request.id is used, it is casted with as string. This casting needs to be removed.
request.id
as string
https://github.com/LiskHQ/lisk-sdk/blob/feature/6554-improve-framework-architecture/framework/src/controller/request.ts#L28
action.id now called request.id is string | null | number to comply with JSONRPC 2.0, but we only expect string
action.id
string | null | number
Closing this issue since this is no longer valid
Description
Currently when
request.id
is used, it is casted withas string
. This casting needs to be removed.https://github.com/LiskHQ/lisk-sdk/blob/feature/6554-improve-framework-architecture/framework/src/controller/request.ts#L28
action.id
now calledrequest.id
isstring | null | number
to comply with JSONRPC 2.0, but we only expect stringAcceptance Criteria