This command from sendtoaddress("address", 0.00001) no longer works in the python-rpc tests. Anything with 4 or more leading zeroes is converted to scientific notation which is no longer valid.
For instance from the command line, all 3 of 0.00001, .00001 , and 1e-05 used to work, now only the first will be correctly parsed.
Perhaps the command line behavior is intended, but I think we need a convenient way to send the right format from the test framework.
This breaks at least smartfees.py @jonasschnelli : ping