mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-20 05:41:35 +00:00
- Solidity Upgraded up to v0.8.0 - Fixed and Added eth_chainId - Fix error in TransactionRecipet - Reward halving issue fixed
14 lines
357 B
Makefile
14 lines
357 B
Makefile
.PHONY: build cluster test
|
|
|
|
default: build
|
|
|
|
build:
|
|
go build -o bin/swarm github.com/XinFinOrg/XDPoSChain/cmd/swarm
|
|
go build -o bin/XDC github.com/XinFinOrg/XDPoSChain/cmd/XDC
|
|
go build -o bin/bootnode github.com/XinFinOrg/XDPoSChain/cmd/bootnode
|
|
|
|
cluster: build
|
|
scripts/boot-cluster.sh
|
|
|
|
test:
|
|
go test -v github.com/XinFinOrg/XDPoSChain/swarm/...
|