We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b0f8ec commit 501f46eCopy full SHA for 501f46e
src/handlers.ts
@@ -496,7 +496,7 @@ export async function submitTxFromFile(args: HandlerArgs): Promise<void> {
496
// local CS for testing
497
const nowWahApi = await getApi("ws://localhost:8000");
498
// read all files that have the name "call_*.txt" from the given dir
499
- const dir = "../polkadot-sdk-2/cumulus/parachains/runtimes/assets/asset-hub-westend";
+ const dir = "../assets";
500
const fs = require('fs');
501
const path = require('path');
502
const files = fs.readdirSync(dir).filter((file: string) => file.startsWith("call_") && file.endsWith(".txt"));
0 commit comments