Fix incorrect parameter usage in socketio getAddressTxids
This commit is contained in:
parent
d6b68174ee
commit
9401e0a61e
@ -270,7 +270,7 @@ type resultAddressTxids struct {
|
|||||||
|
|
||||||
func (s *SocketIoServer) getAddressTxids(addr []string, opts *addrOpts) (res resultAddressTxids, err error) {
|
func (s *SocketIoServer) getAddressTxids(addr []string, opts *addrOpts) (res resultAddressTxids, err error) {
|
||||||
txids := make([]string, 0)
|
txids := make([]string, 0)
|
||||||
lower, higher := uint32(opts.To), uint32(opts.Start)
|
lower, higher := uint32(opts.End), uint32(opts.Start)
|
||||||
for _, address := range addr {
|
for _, address := range addr {
|
||||||
if !opts.QueryMempoolOnly {
|
if !opts.QueryMempoolOnly {
|
||||||
err = s.db.GetTransactions(address, lower, higher, func(txid string, vout uint32, isOutput bool) error {
|
err = s.db.GetTransactions(address, lower, higher, func(txid string, vout uint32, isOutput bool) error {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user