rpc: fix issue with querying txids by block heights
This commit is contained in:
committed by
Braydon Fuller
parent
96d8307b55
commit
94ea69a4d5
@@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user