Skip to content

Commit fc45bd8

Browse files
authored
Merge pull request #7384 from Aldizh/patch-1
Fix loading error for transactions API
2 parents 235b644 + df758f3 commit fc45bd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lambda/txs.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const lambda = async (apiKey: string): Promise<HandlerResponse> => {
1919
const { data } = response
2020
return {
2121
statusCode: 200,
22-
body: JSON.stringify(data),
22+
body: JSON.stringify(data.result),
2323
}
2424
} catch (error) {
2525
console.error(error)

0 commit comments

Comments
 (0)