remains from shift build file

This commit is contained in:
Chatty Network 2016-02-18 13:15:06 +01:00
parent 121ba1fe35
commit 67253c3ffb
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ fi
workspace="$PWD/build/_workspace"
root="$PWD"
chydir="$workspace/src/github.com/chattynet"
if [ ! -L "$chydir/shift" ]; then
if [ ! -L "$chydir/chatty" ]; then
mkdir -p "$chydir"
cd "$chydir"
ln -s ../../../../../. chatty

View file

@ -29,8 +29,8 @@ var (
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.
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.
QuadCoeffDiv = big.NewInt(512) // Divisor for the quadratic particle of the memory cost equation.
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. Changed from 2048 to 256 for faster difficulty adjustment.
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.
SstoreSetGas = big.NewInt(20000) // Once per SLOAD operation.