v.FieldByName("Reason") is actually a pointer to something else. But the code in terminal.go already assumes that it is the Reason already, as a string, and is ready for printing.
This results in useless error messages when the node responds with "Account not found", for example.
v.FieldByName("Reason")
is actually a pointer to something else. But the code in terminal.go already assumes that it is the Reason already, as a string, and is ready for printing.This results in useless error messages when the node responds with "Account not found", for example.