sealed: make the WalletNotHandled flat fee match the other examples

NetBanking flat fee is 15 everywhere; transcripts unchanged.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_01TF9JWFvJSNm6HVzswzZU5a
This commit is contained in:
Claude
2026-09-24 12:15:14 +00:00
parent d2c1efc2c4
commit af44e59e7f
+1 -1
View File
@@ -10,7 +10,7 @@ public class WalletNotHandled {
return switch (p) {
case Card c -> c.amount() * 2 / 100;
case Upi u -> 0;
case NetBanking n -> 10;
case NetBanking n -> 15;
};
}
}