From 67253c3ffb42da5e6d1cb9947e76ebc4ab94a762 Mon Sep 17 00:00:00 2001 From: Chatty Network Date: Thu, 18 Feb 2016 13:15:06 +0100 Subject: [PATCH] remains from shift build file --- build/env.sh | 2 +- params/protocol_params.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build/env.sh b/build/env.sh index d9373f7f5b..e092235bcd 100755 --- a/build/env.sh +++ b/build/env.sh @@ -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 diff --git a/params/protocol_params.go b/params/protocol_params.go index e88c49aa7d..3f6fb7ef9c 100755 --- a/params/protocol_params.go +++ b/params/protocol_params.go @@ -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.