From 84058f240af77f53c490e3deb6de931f532882ef Mon Sep 17 00:00:00 2001 From: login000 Date: Mon, 15 Jul 2019 21:03:33 +1000 Subject: Removed redundant code in pcoin.cpp pcoin.cpp had redundant code in 'int main()', where user_amount was redeclared (and thus became a local variable that shadowed the global version inside 'int main()' (!). Fixed by removing the redeclared, redundant line.---