You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The functions checkBuyableRc and checkSellableRc currently return hardcoded values that automatically approve transactions, which should not be the case. Additionally, the getCoinBudgets function is returning hardcoded null values. These hardcoded values need to be either removed or commented out to ensure the correct logic is implemented.
Furthermore, these hardcoded values introduce dead code smells, as they do not contribute meaningfully to the program's functionality. Keeping such code can increase complexity and reduce maintainability. Removing or refactoring these sections will improve code quality and readability.
The text was updated successfully, but these errors were encountered:
The functions
checkBuyableRc
andcheckSellableRc
currently return hardcoded values that automatically approve transactions, which should not be the case. Additionally, thegetCoinBudgets
function is returning hardcodednull
values. These hardcoded values need to be either removed or commented out to ensure the correct logic is implemented.Furthermore, these hardcoded values introduce dead code smells, as they do not contribute meaningfully to the program's functionality. Keeping such code can increase complexity and reduce maintainability. Removing or refactoring these sections will improve code quality and readability.
The text was updated successfully, but these errors were encountered: