mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 02:12:23 +00:00
add script and js for testing, update difficulty in consensus.go
This commit is contained in:
parent
2a05441b93
commit
d2eb6a8db1
6 changed files with 95 additions and 1 deletions
|
|
@ -287,8 +287,10 @@ func (ethash *Ethash) verifyHeader(chain consensus.ChainReader, header, parent *
|
|||
// CalcDifficulty is the difficulty adjustment algorithm. It returns
|
||||
// the difficulty that a new block should have when created at time
|
||||
// given the parent block's time and difficulty.
|
||||
// TODO Wei: update the difficulty calculation function to reduce the rate of blck difficulty increment
|
||||
func (ethash *Ethash) CalcDifficulty(chain consensus.ChainReader, time uint64, parent *types.Header) *big.Int {
|
||||
return CalcDifficulty(chain.Config(), time, parent)
|
||||
//return CalcDifficulty(chain.Config(), time, parent)
|
||||
return big.NewInt(0x200)
|
||||
}
|
||||
|
||||
// CalcDifficulty is the difficulty adjustment algorithm. It returns
|
||||
|
|
|
|||
12
genesis.json
Normal file
12
genesis.json
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
|
||||
{ "config": {
|
||||
"chainId": 987,
|
||||
"homesteadBlock": 0,
|
||||
"eip155Block": 0,
|
||||
"eip158Block": 0
|
||||
},
|
||||
"difficulty": "0x200",
|
||||
"gasLimit": "0x8000000",
|
||||
"alloc": {}
|
||||
}
|
||||
}
|
||||
47
node0.js
Normal file
47
node0.js
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
function sleep(milliseconds) {
|
||||
var start = new Date().getTime();
|
||||
for (var i = 0; i < 1e7; i++) {
|
||||
if ((new Date().getTime() - start) > milliseconds){
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function interaction() {
|
||||
personal.newAccount("123456")
|
||||
personal.newAccount("123456")
|
||||
acc0 = web3.eth.accounts[0]
|
||||
acc1 = web3.eth.accounts[1]
|
||||
console.log("account list: " + eth.accounts)
|
||||
console.log("acc0 balance: " + web3.fromWei(web3.eth.getBalance(acc0)))
|
||||
console.log("acc1 balance: " + web3.fromWei(web3.eth.getBalance(acc1)))
|
||||
|
||||
miner.setEtherbase(eth.accounts[0])
|
||||
miner.start()
|
||||
|
||||
while (1) {
|
||||
balance = web3.fromWei(web3.eth.getBalance(acc0))
|
||||
if (balance > 0) {
|
||||
miner.stop()
|
||||
personal.unlockAccount(acc0, "123456")
|
||||
eth.sendTransaction({from:acc0,to:acc1,value:web3.toWei(1,"ether")})
|
||||
miner.start()
|
||||
// sleep(10000)
|
||||
// if (balance1 = balance - 1) {
|
||||
while (1) {
|
||||
balance1 = web3.fromWei(web3.eth.getBalance(acc1))
|
||||
if (balance1 > 0) {
|
||||
miner.stop()
|
||||
break
|
||||
}
|
||||
}
|
||||
console.log("acc0 balance: " + web3.fromWei(web3.eth.getBalance(acc0)))
|
||||
console.log("acc1 balance: " + web3.fromWei(web3.eth.getBalance(acc1)))
|
||||
// }
|
||||
break
|
||||
}
|
||||
}
|
||||
console.log(admin.nodeInfo.id)
|
||||
}
|
||||
|
||||
interaction()
|
||||
7
node0.sh
Normal file
7
node0.sh
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
rm -rf /home/vivid/.ethereum/*
|
||||
echo "main node datadir cleared"
|
||||
./geth --datadir /home/vivid/.ethereum init genesis.json
|
||||
|
||||
sleep 1s
|
||||
./geth --datadir /home/vivid/.ethereum --port 30303 --networkid 9876 console
|
||||
|
||||
19
node1.js
Normal file
19
node1.js
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
function sleep(milliseconds) {
|
||||
var start = new Date().getTime();
|
||||
for (var i = 0; i < 1e7; i++) {
|
||||
if ((new Date().getTime() - start) > milliseconds){
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function interaction() {
|
||||
console.log("peer count: " + net.peerCount)
|
||||
admin.addPeer("enode://a321db2296eb0078fab331d27460456f9c66c478049ee34441595d9c4fc4391af31f24b81fcdf21f28a7e391d07ab4fc550b6e235021abad310992f32d2fc876@127.0.0.1:30303")
|
||||
sleep(5000)
|
||||
console.log("peer count: " + net.peerCount)
|
||||
|
||||
|
||||
}
|
||||
|
||||
interaction()
|
||||
7
node1.sh
Normal file
7
node1.sh
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
rm -rf /home/vivid/peernode/*
|
||||
echo "peer node datadir cleared"
|
||||
./geth --datadir /home/vivid/peernode init genesis.json
|
||||
|
||||
sleep 1s
|
||||
./geth --datadir /home/vivid/peernode --port 30304 --networkid 9876 console
|
||||
|
||||
Loading…
Reference in a new issue