Commit b7939a10 authored by liuyuhang's avatar liuyuhang Committed by vipwzw

modify boardApproveRatio default value from 66% to 51%

parent 4daf4270
...@@ -25,7 +25,7 @@ const ( ...@@ -25,7 +25,7 @@ const (
ticketPrice = types.Coin * 3000 // 单张票价 ticketPrice = types.Coin * 3000 // 单张票价
largeProjectAmount = types.Coin * 100 * 10000 // 重大项目公示金额阈值 largeProjectAmount = types.Coin * 100 * 10000 // 重大项目公示金额阈值
proposalAmount = types.Coin * 500 // 创建者消耗金额 proposalAmount = types.Coin * 500 // 创建者消耗金额
boardApproveRatio int32 = 66 // 董事会成员赞成率,以%计,可修改 boardApproveRatio int32 = 51 // 董事会成员赞成率,以%计,可修改
pubAttendRatio int32 = 75 // 全体持票人参与率,以%计 pubAttendRatio int32 = 75 // 全体持票人参与率,以%计
pubApproveRatio int32 = 66 // 全体持票人赞成率,以%计 pubApproveRatio int32 = 66 // 全体持票人赞成率,以%计
pubOpposeRatio int32 = 33 // 全体持票人否决率,以%计 pubOpposeRatio int32 = 33 // 全体持票人否决率,以%计
......
...@@ -201,9 +201,9 @@ func voteProposalChange(t *testing.T, env *ExecEnv, exec drivers.Driver, stateDB ...@@ -201,9 +201,9 @@ func voteProposalChange(t *testing.T, env *ExecEnv, exec drivers.Driver, stateDB
{PrivKeyD, true}, {PrivKeyD, true},
{PrivKey1, false}, {PrivKey1, false},
{PrivKey2, true}, {PrivKey2, false},
{PrivKey3, true}, {PrivKey3, false},
{PrivKey4, true}, {PrivKey4, false},
{PrivKey5, true}, {PrivKey5, true},
{PrivKey6, true}, {PrivKey6, true},
{PrivKey7, true}, {PrivKey7, true},
......
...@@ -372,9 +372,9 @@ func voteProposalProject(t *testing.T, env *ExecEnv, exec drivers.Driver, stateD ...@@ -372,9 +372,9 @@ func voteProposalProject(t *testing.T, env *ExecEnv, exec drivers.Driver, stateD
{PrivKeyC, true}, {PrivKeyC, true},
{PrivKeyD, true}, {PrivKeyD, true},
{PrivKey1, true}, {PrivKey1, false},
{PrivKey2, true}, {PrivKey2, false},
{PrivKey3, true}, {PrivKey3, false},
{PrivKey4, true}, {PrivKey4, true},
{PrivKey5, true}, {PrivKey5, true},
{PrivKey6, true}, {PrivKey6, true},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment