Skip to content

Commit

Permalink
Fix main spec
Browse files Browse the repository at this point in the history
  • Loading branch information
pshenmic committed Jun 5, 2024
1 parent f5d6356 commit 4e56c95
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/api/test/integration/main.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,10 @@ describe('Other routes', () => {
blockHeight: block.height,
type: dataContractTransaction.type,
data: JSON.stringify(dataContractTransaction.data),
timestamp: block.timestamp.toISOString()
timestamp: block.timestamp.toISOString(),
gasUsed: dataContractTransaction.gas_used,
status: dataContractTransaction.status,
error: dataContractTransaction.error
}

assert.deepEqual({ transaction: expectedTransaction }, body)
Expand Down

0 comments on commit 4e56c95

Please sign in to comment.