Skip to content

Commit ba39858

Browse files
committed
restore original dao funding rate
1 parent c828b36 commit ba39858

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/xian/tools/genesis/contracts/currency.s.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,14 @@ def seed(vk: str):
9191
# 1824 * 24 * 60 * 60 = 157593600 (seconds in duration)
9292
# 16666666.65 / 157593600 (release per second)
9393

94-
# This stream has been removed for rcnet/mainnet but leaving it here as some tests rely on it.
9594
setup_seed_stream(stream_id="team_vesting", sender="team_vesting", receiver="team_lock", rate=0.10575725568804825, duration_days=1824)
9695

9796
# DAO FUNDING STREAM
9897
# 365 * 5 + 364 = 2189 (5 years + 1 leap-year)
9998
# 2189 * 24 * 60 * 60 = 189129600 (seconds in duration)
10099
# 22333333.311 / 189129600 = 0.1180848122715852 (release per second)
101100

102-
setup_seed_stream(stream_id="dao_funding_stream", sender="dao_funding_stream", receiver="dao", rate=0.15823364844392418, duration_days=2189)
101+
setup_seed_stream(stream_id="dao_funding_stream", sender="dao_funding_stream", receiver="dao", rate=0.1180848122715852, duration_days=2189)
103102

104103
def setup_seed_stream(stream_id: str, sender: str, receiver: str, rate: float, duration_days: int):
105104
streams[stream_id, 'status'] = "active"

0 commit comments

Comments
 (0)