mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-24 21:56:43 +00:00
remains from shift build file
This commit is contained in:
parent
121ba1fe35
commit
67253c3ffb
2 changed files with 3 additions and 3 deletions
|
|
@ -11,7 +11,7 @@ fi
|
||||||
workspace="$PWD/build/_workspace"
|
workspace="$PWD/build/_workspace"
|
||||||
root="$PWD"
|
root="$PWD"
|
||||||
chydir="$workspace/src/github.com/chattynet"
|
chydir="$workspace/src/github.com/chattynet"
|
||||||
if [ ! -L "$chydir/shift" ]; then
|
if [ ! -L "$chydir/chatty" ]; then
|
||||||
mkdir -p "$chydir"
|
mkdir -p "$chydir"
|
||||||
cd "$chydir"
|
cd "$chydir"
|
||||||
ln -s ../../../../../. chatty
|
ln -s ../../../../../. chatty
|
||||||
|
|
|
||||||
|
|
@ -29,8 +29,8 @@ var (
|
||||||
CallNewAccountGas = big.NewInt(25000) // Paid for CALL when the destination address didn't exist prior.
|
CallNewAccountGas = big.NewInt(25000) // Paid for CALL when the destination address didn't exist prior.
|
||||||
TxGas = big.NewInt(21000) // Per transaction. NOTE: Not payable on data of calls between transactions.
|
TxGas = big.NewInt(21000) // Per transaction. NOTE: Not payable on data of calls between transactions.
|
||||||
TxDataZeroGas = big.NewInt(4) // Per byte of data attached to a transaction that equals zero. NOTE: Not payable on data of calls between transactions.
|
TxDataZeroGas = big.NewInt(4) // Per byte of data attached to a transaction that equals zero. NOTE: Not payable on data of calls between transactions.
|
||||||
DifficultyBoundDivisor = big.NewInt(2048) // The bound divisor of the difficulty, used in the update calculations.
|
DifficultyBoundDivisor = big.NewInt(256) // The bound divisor of the difficulty, used in the update calculations.
|
||||||
QuadCoeffDiv = big.NewInt(512) // Divisor for the quadratic particle of the memory cost equation.
|
QuadCoeffDiv = big.NewInt(512) // Divisor for the quadratic particle of the memory cost equation. Changed from 2048 to 256 for faster difficulty adjustment.
|
||||||
GenesisDifficulty = big.NewInt(131072) // Difficulty of the Genesis block.
|
GenesisDifficulty = big.NewInt(131072) // Difficulty of the Genesis block.
|
||||||
DurationLimit = big.NewInt(13) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not.
|
DurationLimit = big.NewInt(13) // The decision boundary on the blocktime duration used to determine whether difficulty should go up or not.
|
||||||
SstoreSetGas = big.NewInt(20000) // Once per SLOAD operation.
|
SstoreSetGas = big.NewInt(20000) // Once per SLOAD operation.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue