Return from dumpwallet handler after replying with an error.

This commit is contained in:
Josh Rickmar 2013-11-21 10:40:09 -05:00
parent 908b419443
commit 47b5e17917

View file

@ -242,6 +242,7 @@ func DumpWallet(frontend chan []byte, icmd btcjson.Cmd) {
Message: err.Error(), Message: err.Error(),
} }
ReplyError(frontend, cmd.Id(), e) ReplyError(frontend, cmd.Id(), e)
return
} }
} }