Description
The rollback event uses symbol_short!("rollbck"), a typo of "rollback". Off-chain indexers and the frontend's contract-error parsing match on event topic strings, so this typo is a small but real footgun for anyone wiring up event listeners expecting the correctly spelled topic.
Where
contracts/bulk_payment/src/lib.rs (~line 755)
Acceptance Criteria
Description
The rollback event uses
symbol_short!("rollbck"), a typo of "rollback". Off-chain indexers and the frontend's contract-error parsing match on event topic strings, so this typo is a small but real footgun for anyone wiring up event listeners expecting the correctly spelled topic.Where
contracts/bulk_payment/src/lib.rs(~line 755)Acceptance Criteria
"rollback"(note: Sorobansymbol_short!has a 9-character limit, so confirm it fits or pick an equally clear short symbol)"rollbck"and update those too