Solidity Challenge 2: 🚢 Ahoy, developers! Welcome to the Unload Challenge! Calling Unload.cargo() will unveil the cargo. Can you tell which cargo will be unloaded, apples or bananas?
It was a challenge about inheritance. The correct answer is ‘bananas’ because when a function is called that is defined multiple times in different contracts, parent contracts are searched from right to left.
The override(Ship_B, Ship_A) part gives the false impression of a locally determined inheritance ordering, but it does not actually influence it.