Skip to content

Commit

Permalink
Merge pull request #379 from bittorrent/release_2.3.2
Browse files Browse the repository at this point in the history
Release 2.3.2
  • Loading branch information
kratos-wang authored Sep 28, 2023
2 parents 0f38824 + 75baa21 commit b2edeb1
Show file tree
Hide file tree
Showing 311 changed files with 47,665 additions and 6,077 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,8 @@ cmd/btfs/btfs
cmd/btfs/btfs.upgrade
cmd/btfs/ttt
cmd/btfs/tt
cmd/btfs/t*
cmd/btfs/t*
cmd/btfs/btfs.1.*
cmd/btfs/btfs.2.*
cmd/btfs/btfs.3.*
btfs.linux.*
6 changes: 3 additions & 3 deletions assets/assets.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import (
"github.com/bittorrent/go-btfs/core"
"github.com/bittorrent/go-btfs/core/coreapi"

files "github.com/TRON-US/go-btfs-files"
options "github.com/TRON-US/interface-go-btfs-core/options"
"github.com/TRON-US/interface-go-btfs-core/path"
files "github.com/bittorrent/go-btfs-files"
options "github.com/bittorrent/interface-go-btfs-core/options"
"github.com/bittorrent/interface-go-btfs-core/path"
cid "github.com/ipfs/go-cid"
)

Expand Down
14 changes: 8 additions & 6 deletions assets/bindata.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion autoupdate/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (

"github.com/bittorrent/go-btfs/logger"

"github.com/TRON-US/go-btfs-api"
"github.com/bittorrent/go-btfs-api"
)

var log = logger.InitLogger("update.log").Sugar()
Expand Down
2 changes: 1 addition & 1 deletion bigint/bigint.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (i *BigInt) UnmarshalJSON(b []byte) error {
return nil
}

//Wrap wraps big.Int pointer into BigInt struct.
// Wrap wraps big.Int pointer into BigInt struct.
func Wrap(i *big.Int) *BigInt {
return &BigInt{Int: i}
}
12 changes: 7 additions & 5 deletions bindata/bindata.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,11 +156,13 @@ var _bindata = map[string]func() (*asset, error){
// directory embedded in the file by go-bindata.
// For example if you run go-bindata on data/... and data contains the
// following hierarchy:
// data/
// foo.txt
// img/
// a.png
// b.png
//
// data/
// foo.txt
// img/
// a.png
// b.png
//
// then AssetDir("data") would return []string{"foo.txt", "img"}
// AssetDir("data/img") would return []string{"a.png", "b.png"}
// AssetDir("foo.txt") and AssetDir("notexist") would return an error
Expand Down
2 changes: 1 addition & 1 deletion chain/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package config

import (
"errors"
cfg "github.com/TRON-US/go-btfs-config"
cfg "github.com/bittorrent/go-btfs-config"
"github.com/ethereum/go-ethereum/common"
)

Expand Down
6 changes: 3 additions & 3 deletions chain/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ import (
"encoding/base64"
"errors"
"fmt"
config "github.com/TRON-US/go-btfs-config"
config "github.com/bittorrent/go-btfs-config"
"io/ioutil"
"math/rand"
"os"
"time"

cmds "github.com/bittorrent/go-btfs-cmds"
"github.com/bittorrent/go-btfs-common/crypto"
onlinePb "github.com/bittorrent/go-btfs-common/protos/online"
oldcmds "github.com/bittorrent/go-btfs/commands"
"github.com/bittorrent/go-btfs/core/commands/storage/path"
"github.com/bittorrent/go-btfs/settlement/swap/vault"
cpt "github.com/bittorrent/go-btfs/transaction/crypto"
"github.com/bittorrent/go-btfs/transaction/storage"
"github.com/ethereum/go-ethereum/common"
"github.com/tron-us/go-btfs-common/crypto"
onlinePb "github.com/tron-us/go-btfs-common/protos/online"
)

// after btfs init
Expand Down
2 changes: 1 addition & 1 deletion cmd/btfs/autoupdate.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (
"strings"
"time"

"github.com/TRON-US/go-btfs-api"
btfs_version "github.com/bittorrent/go-btfs"
"github.com/bittorrent/go-btfs-api"
"github.com/mholt/archiver/v3"
"github.com/pkg/errors"
"gopkg.in/yaml.v2"
Expand Down
2 changes: 1 addition & 1 deletion cmd/btfs/chain_config_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

"gotest.tools/assert"

Cfg "github.com/TRON-US/go-btfs-config"
cmds "github.com/bittorrent/go-btfs-cmds"
Cfg "github.com/bittorrent/go-btfs-config"
"github.com/bittorrent/go-btfs/chain"
)

Expand Down
Loading

0 comments on commit b2edeb1

Please sign in to comment.