rpc: fix issue with querying txids by block heights

This commit is contained in:
Braydon Fuller
2016-04-12 20:33:18 -04:00
committed by Braydon Fuller
parent 96d8307b55
commit 94ea69a4d5
5 changed files with 48 additions and 26 deletions

View File

@@ -675,7 +675,7 @@ UniValue getaddresstxids(const UniValue& params, bool fHelp)
UniValue endValue = find_value(params[0].get_obj(), "end");
if (startValue.isNum() && endValue.isNum()) {
start = startValue.get_int();
end = startValue.get_int();
end = endValue.get_int();
}
}