Skip to content

Commit d892a71

Browse files
committed
chore: update package name
chore: update package name chore: update package name chore: update package name chore: update package name
1 parent 940b22a commit d892a71

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

blockchain/transaction.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"math/big"
1414
"strings"
1515

16-
"main.go/wallet"
16+
"github.com/kenjitheman/shinjiru/wallet"
1717
)
1818

1919
type Transaction struct {

blockchain/tx.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"bytes"
55
"encoding/gob"
66

7-
"main.go/wallet"
7+
"github.com/kenjitheman/shinjiru/wallet"
88
)
99

1010
type TxOutput struct {

cli/cli.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"runtime"
99
"strconv"
1010

11-
"main.go/blockchain"
12-
"main.go/network"
13-
"main.go/wallet"
11+
"github.com/kenjitheman/shinjiru/blockchain"
12+
"github.com/kenjitheman/shinjiru/network"
13+
"github.com/kenjitheman/shinjiru/wallet"
1414
)
1515

1616
type CommandLine struct{}

cmd/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package main
33
import (
44
"os"
55

6-
"main.go/cli"
6+
"github.com/kenjitheman/shinjiru/cli"
77
)
88

99
func main() {

network/network.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414

1515
"github.com/vrecan/death/v3"
1616

17-
"main.go/blockchain"
17+
"github.com/kenjitheman/shinjiru/blockchain"
1818
)
1919

2020
const (

0 commit comments

Comments
 (0)