Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix to godcr-nuklear, godcr-web and godcr-cli go module issue #477

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions app/go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
module github.com/raedahgroup/godcr/app

go 1.12
go 1.13

replace github.com/raedahgroup/godcr/cli => ../cli

require (
github.com/decred/dcrd/chaincfg/chainhash v1.0.1
github.com/decred/dcrd/dcrutil v1.2.0
github.com/decred/dcrd/chaincfg/chainhash v1.0.2
github.com/decred/dcrd/dcrutil v1.4.0
github.com/decred/dcrd/hdkeychain v1.1.1
github.com/decred/dcrd/wire v1.2.0
github.com/decred/dcrwallet v1.2.2
github.com/decred/dcrwallet/rpc/walletrpc v0.1.0
github.com/decred/dcrd/wire v1.3.0
github.com/decred/dcrwallet v1.2.3-0.20181120205657-8690f1096aa7
github.com/decred/dcrwallet/rpc/walletrpc v0.3.0
github.com/decred/dcrwallet/wallet v1.3.0
github.com/decred/dcrwallet/walletseed v1.0.1
github.com/decred/dcrwallet/walletseed v1.0.3
github.com/jessevdk/go-flags v1.4.0
github.com/raedahgroup/dcrlibwallet v1.0.1-0.20190807181808-37b6666fe764
google.golang.org/grpc v1.14.0
github.com/raedahgroup/dcrlibwallet v1.0.1-0.20190831020110-aad933e3f96d
github.com/raedahgroup/godcr/cli v0.0.0-20200107105444-bd23847c1453
google.golang.org/grpc v1.26.0
)
103 changes: 103 additions & 0 deletions app/go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app/walletmediums/dcrwalletrpc/helpers.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func (c *WalletRPCClient) updateTicketPurchaseRequestWithVSPInfo(request *dcrlib
pubKeyAddr := addressValidationResult.PubKeyAddr

// invoke vsp api
ticketPurchaseInfo, err := dcrlibwallet.CallVSPTicketInfoAPI(request.VSPHost, pubKeyAddr)
ticketPurchaseInfo, err := dcrlibwallet.CallVSPPurchaseTicketAPI(request.VSPHost, pubKeyAddr)
if err != nil {
return fmt.Errorf("vsp connection error: %s", err.Error())
}
Expand Down
1 change: 1 addition & 0 deletions app/walletmediums/dcrwalletrpc/walletloader.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"errors"
"fmt"

"github.com/decred/dcrd/dcrutil"
"github.com/decred/dcrd/hdkeychain"
"github.com/decred/dcrwallet/rpc/walletrpc"
Expand Down
9 changes: 4 additions & 5 deletions cli/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@ module github.com/raedahgroup/godcr/cli
go 1.12

require (
github.com/decred/dcrd/dcrutil v1.2.0
github.com/decred/dcrd/dcrutil v1.4.0
github.com/decred/dcrd/hdkeychain v1.1.1
github.com/decred/dcrwallet v1.2.3-0.20181120205657-8690f1096aa7
github.com/decred/dcrwallet/rpc/walletrpc v1.0.1-0.20181109211527-ca582da21c08
github.com/decred/dcrwallet/walletseed v1.0.1
github.com/decred/dcrwallet/walletseed v1.0.3
github.com/decred/slog v1.0.0
github.com/jessevdk/go-flags v1.4.0
github.com/raedahgroup/dcrlibwallet v1.0.1-0.20190807181808-37b6666fe764
github.com/raedahgroup/godcr/app v0.0.0-00010101000000-000000000000
github.com/raedahgroup/dcrlibwallet v1.0.1-0.20190831020110-aad933e3f96d
github.com/raedahgroup/godcr/app v0.0.0-20200107105444-bd23847c1453
github.com/skip2/go-qrcode v0.0.0-20190110000554-dc11ecdae0a9
golang.org/x/crypto v0.0.0-20190829043050-9756ffdc2472
)
Expand Down
121 changes: 61 additions & 60 deletions cli/go.sum

Large diffs are not rendered by default.

22 changes: 0 additions & 22 deletions cmd/go.mod

This file was deleted.

15 changes: 15 additions & 0 deletions cmd/godcr-cli/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module github.com/raedahgroup/godcr/cmd/godcr-cli

go 1.13

replace github.com/raedahgroup/godcr/app => ../../app

replace github.com/raedahgroup/godcr/cli => ../../cli

require (
github.com/decred/slog v1.0.0
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/logrotate v1.0.0
github.com/raedahgroup/godcr/app v0.0.0-20200107105444-bd23847c1453
github.com/raedahgroup/godcr/cli v0.0.0-20200107105444-bd23847c1453
)
319 changes: 319 additions & 0 deletions cmd/godcr-cli/go.sum

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions cmd/godcr-nuklear/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
module github.com/raedahgroup/godcr/cmd/godcr-nuklear

go 1.13

replace github.com/raedahgroup/godcr/app => ../../app

require (
github.com/decred/slog v1.0.0
github.com/jessevdk/go-flags v1.4.0
github.com/jrick/logrotate v1.0.0
github.com/raedahgroup/godcr/app v0.0.0-20200107105444-bd23847c1453
github.com/raedahgroup/godcr/cli v0.0.0-20200107105444-bd23847c1453
github.com/raedahgroup/godcr/nuklear v0.0.0-20200107105444-bd23847c1453
)
309 changes: 309 additions & 0 deletions cmd/godcr-nuklear/go.sum

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions cmd/godcr-web/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module github.com/raedahgroup/godcr/cmd/godcr-web

go 1.13

replace github.com/raedahgroup/godcr/app => ../../app

replace github.com/raedahgroup/godcr/cli => ../../cli

require (
github.com/decred/slog v1.0.0
github.com/jrick/logrotate v1.0.0
github.com/raedahgroup/godcr/app v0.0.0-20200107105444-bd23847c1453
github.com/raedahgroup/godcr/cli v0.0.0-20200107105444-bd23847c1453
github.com/raedahgroup/godcr/web v0.0.0-20200107105444-bd23847c1453
)
Loading