Telegram: https://t.me/+DOylgFv1jyJlNzM0
Why this matters
backend/src/controllers/stream.controller.ts imports withdraw as sorobanWithdraw from sorobanService (top of file) but never uses it — withdrawal has its own handler in routes/v1/streams/withdraw.ts. The dangling import is dead code and can trip no-unused-vars lint.
Acceptance criteria
Files to touch
backend/src/controllers/stream.controller.ts
Out of scope
- The real withdraw handler in
routes/v1/streams/withdraw.ts.
Telegram: https://t.me/+DOylgFv1jyJlNzM0
Why this matters
backend/src/controllers/stream.controller.tsimportswithdraw as sorobanWithdrawfromsorobanService(top of file) but never uses it — withdrawal has its own handler inroutes/v1/streams/withdraw.ts. The dangling import is dead code and can tripno-unused-varslint.Acceptance criteria
withdraw as sorobanWithdrawfrom the import block instream.controller.tsnpm run buildpasses with no unused-import warningFiles to touch
backend/src/controllers/stream.controller.tsOut of scope
routes/v1/streams/withdraw.ts.