Move to decred github org

This commit is contained in:
jholdstock 2020-05-28 18:21:19 +01:00 committed by David Hill
parent 4b2a68ea48
commit 86fdf888da
12 changed files with 25 additions and 25 deletions

View File

@ -1,8 +1,8 @@
# vspd
[![Build Status](https://github.com/jholdstock/vspd/workflows/Build%20and%20Test/badge.svg)](https://github.com/jholdstock/vspd/actions)
[![Build Status](https://github.com/decred/vspd/workflows/Build%20and%20Test/badge.svg)](https://github.com/decred/vspd/actions)
[![ISC License](https://img.shields.io/badge/license-ISC-blue.svg)](http://copyfree.org)
[![Go Report Card](https://goreportcard.com/badge/github.com/jholdstock/vspd)](https://goreportcard.com/report/github.com/jholdstock/vspd)
[![Go Report Card](https://goreportcard.com/badge/github.com/decred/vspd)](https://goreportcard.com/report/github.com/decred/vspd)
## Overview
@ -77,7 +77,7 @@ database file will also be written to this path when vspd shuts down.
## Issue Tracker
The [integrated github issue tracker](https://github.com/jholdstock/vspd/issues)
The [integrated github issue tracker](https://github.com/decred/vspd/issues)
is used for this project.
## License

View File

@ -7,8 +7,8 @@ import (
"decred.org/dcrwallet/rpc/client/dcrd"
"github.com/decred/dcrd/chaincfg/v3"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
)
type NotificationHandler struct {

2
go.mod
View File

@ -1,4 +1,4 @@
module github.com/jholdstock/vspd
module github.com/decred/vspd
go 1.13

8
log.go
View File

@ -8,10 +8,10 @@ import (
"github.com/decred/slog"
"github.com/jrick/logrotate/rotator"
"github.com/jholdstock/vspd/background"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
"github.com/jholdstock/vspd/webapi"
"github.com/decred/vspd/background"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
"github.com/decred/vspd/webapi"
)
// logWriter implements an io.Writer that outputs to both standard output and

View File

@ -8,10 +8,10 @@ import (
"sync"
"time"
"github.com/jholdstock/vspd/background"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
"github.com/jholdstock/vspd/webapi"
"github.com/decred/vspd/background"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
"github.com/decred/vspd/webapi"
)
const (

View File

@ -7,10 +7,10 @@ import (
"decred.org/dcrwallet/wallet/txrules"
"github.com/decred/dcrd/dcrutil/v3"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
"github.com/gin-gonic/gin"
"github.com/gin-gonic/gin/binding"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
)
// addrMtx protects getNewFeeAddress.

View File

@ -4,7 +4,7 @@ import (
"net/http"
"time"
"github.com/jholdstock/vspd/database"
"github.com/decred/vspd/database"
"github.com/gin-gonic/gin"
)

View File

@ -3,9 +3,9 @@ package webapi
import (
"net/http"
"github.com/decred/vspd/rpc"
"github.com/gin-gonic/gin"
"github.com/gin-gonic/gin/binding"
"github.com/jholdstock/vspd/rpc"
)
type ticketHashRequest struct {

View File

@ -9,10 +9,10 @@ import (
"github.com/decred/dcrd/dcrutil/v3"
"github.com/decred/dcrd/txscript/v3"
"github.com/decred/dcrd/wire"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
"github.com/gin-gonic/gin"
"github.com/gin-gonic/gin/binding"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
)
// payFee is the handler for "POST /payfee".

View File

@ -4,10 +4,10 @@ import (
"net/http"
"time"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
"github.com/gin-gonic/gin"
"github.com/gin-gonic/gin/binding"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
)
// setVoteChoices is the handler for "POST /setvotechoices".

View File

@ -4,9 +4,9 @@ import (
"net/http"
"time"
"github.com/decred/vspd/database"
"github.com/gin-gonic/gin"
"github.com/gin-gonic/gin/binding"
"github.com/jholdstock/vspd/database"
)
// ticketStatus is the handler for "GET /ticketstatus".

View File

@ -11,8 +11,8 @@ import (
"sync"
"time"
"github.com/jholdstock/vspd/database"
"github.com/jholdstock/vspd/rpc"
"github.com/decred/vspd/database"
"github.com/decred/vspd/rpc"
"github.com/decred/dcrd/chaincfg/v3"
"github.com/gin-gonic/gin"