Every day we process millions of payments. And it’s crucial we process them correctly.
To stop us introducing bugs when we make changes, we use things like code reviews and automated testing.
And we also have systems to detect bugs retroactively. Payments Tech Lead @joost explains two of the more unusual controls we use: coherence checking and reconciliation.
Hi Peter! The ‘hot path’ is a term used in tech to refer to the code path that is executed to make a payment. For example, the code that finds which Monzo account belongs to a certain account number and sort code. If you change the hot path you want to be extra careful.
In my rather less FinTech software life the “hot path” is basically the path through the code that is taken most frequently, with considerations around importance mixed in
If you are going to optimise anywhere (obviously once done with the CI pipeline) it is best on the “hot path”. Also you need to avoid extraneous processing or any delays (and even potential for delays)
That also fits well with the particular use case at I would say