File tree 8 files changed +8
-24
lines changed
8 files changed +8
-24
lines changed Original file line number Diff line number Diff line change 53
53
// don't license generated files
54
54
"contracts/chequebook/contract/" ,
55
55
"contracts/ens/contract/" ,
56
+ "contracts/release/contract.go" ,
56
57
}
57
58
58
59
// paths with this prefix are licensed as GPL. all other files are LGPL.
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ import (
32
32
"github.com/ethereum/go-ethereum/cmd/utils"
33
33
"github.com/ethereum/go-ethereum/common"
34
34
"github.com/ethereum/go-ethereum/console"
35
+ "github.com/ethereum/go-ethereum/contracts/release"
35
36
"github.com/ethereum/go-ethereum/core"
36
37
"github.com/ethereum/go-ethereum/core/state"
37
38
"github.com/ethereum/go-ethereum/eth"
@@ -42,7 +43,6 @@ import (
42
43
"github.com/ethereum/go-ethereum/metrics"
43
44
"github.com/ethereum/go-ethereum/node"
44
45
"github.com/ethereum/go-ethereum/params"
45
- "github.com/ethereum/go-ethereum/release"
46
46
"github.com/ethereum/go-ethereum/rlp"
47
47
"gopkg.in/urfave/cli.v1"
48
48
)
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ import (
33
33
"github.com/ethereum/ethash"
34
34
"github.com/ethereum/go-ethereum/accounts"
35
35
"github.com/ethereum/go-ethereum/common"
36
+ "github.com/ethereum/go-ethereum/contracts/release"
36
37
"github.com/ethereum/go-ethereum/core"
37
38
"github.com/ethereum/go-ethereum/core/state"
38
39
"github.com/ethereum/go-ethereum/crypto"
@@ -47,7 +48,6 @@ import (
47
48
"github.com/ethereum/go-ethereum/p2p/nat"
48
49
"github.com/ethereum/go-ethereum/params"
49
50
"github.com/ethereum/go-ethereum/pow"
50
- "github.com/ethereum/go-ethereum/release"
51
51
"github.com/ethereum/go-ethereum/rpc"
52
52
"github.com/ethereum/go-ethereum/whisper"
53
53
"gopkg.in/urfave/cli.v1"
Load Diff Large diffs are not rendered by default.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 17
17
// Package release contains the node service that tracks client releases.
18
18
package release
19
19
20
+ //go:generate abigen --sol ./contract.sol --pkg release --out ./contract.go
21
+
20
22
import (
21
23
"fmt"
22
24
"strings"
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments