We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab6720c commit 788f754Copy full SHA for 788f754
tests/test_helpers.ts
@@ -55,11 +55,10 @@ export async function mineArLocalBlock(arweave: Arweave): Promise<void> {
55
}
56
57
export async function getTxDataFromGateway(arweave: Arweave, txId: TransactionID): Promise<Buffer> {
58
- const { data } =
59
- await arweave.api.get<Buffer>(`${txId}`, {
60
- responseType: 'arraybuffer'
61
- })
62
- return data;
+ const { data } = await arweave.api.get<Buffer>(`${txId}`, {
+ responseType: 'arraybuffer'
+ });
+ return data;
63
64
65
export async function getMetaDataJSONFromGateway(
0 commit comments