-
Notifications
You must be signed in to change notification settings - Fork 362
/
Copy pathtest_incentive.py
130 lines (102 loc) · 3.65 KB
/
test_incentive.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import asyncio
import pytest
from tests.e2e_tests.utils.chain_interactions import (
sudo_set_admin_utils,
wait_epoch,
wait_interval,
)
@pytest.mark.asyncio
async def test_incentive(local_chain, subtensor, templates, alice_wallet, bob_wallet):
"""
Test the incentive mechanism and interaction of miners/validators
Steps:
1. Register a subnet as Alice and register Bob
2. Run Alice as validator & Bob as miner. Wait Epoch
3. Verify miner has correct: trust, rank, consensus, incentive
4. Verify validator has correct: validator_permit, validator_trust, dividends, stake
Raises:
AssertionError: If any of the checks or verifications fail
"""
print("Testing test_incentive")
netuid = 2
# Register root as Alice - the subnet owner and validator
assert subtensor.register_subnet(alice_wallet)
# Verify subnet <netuid> created successfully
assert subtensor.subnet_exists(netuid), "Subnet wasn't created successfully"
# Register Bob as a neuron on the subnet
assert subtensor.burned_register(
bob_wallet, netuid
), "Unable to register Bob as a neuron"
# Assert two neurons are in network
assert (
len(subtensor.neurons(netuid=netuid)) == 2
), "Alice & Bob not registered in the subnet"
# Wait for the first epoch to pass
await wait_epoch(subtensor, netuid)
# Get latest metagraph
metagraph = subtensor.metagraph(netuid)
# Get current miner/validator stats
alice_neuron = metagraph.neurons[0]
assert alice_neuron.validator_permit is True
assert alice_neuron.dividends == 0
assert alice_neuron.stake.tao > 0
assert alice_neuron.validator_trust == 0
assert alice_neuron.incentive == 0
assert alice_neuron.consensus == 0
assert alice_neuron.rank == 0
bob_neuron = metagraph.neurons[1]
assert bob_neuron.incentive == 0
assert bob_neuron.consensus == 0
assert bob_neuron.rank == 0
assert bob_neuron.trust == 0
# update weights_set_rate_limit for fast-blocks
tempo = subtensor.tempo(netuid)
status, error = sudo_set_admin_utils(
local_chain,
alice_wallet,
call_function="sudo_set_weights_set_rate_limit",
call_params={
"netuid": netuid,
"weights_set_rate_limit": tempo,
},
)
assert error is None
assert status is True
async with templates.miner(bob_wallet, netuid):
async with templates.validator(alice_wallet, netuid) as validator:
# wait for the Validator to process and set_weights
async with asyncio.timeout(60):
await validator.set_weights.wait()
# Wait till new epoch
await wait_interval(tempo, subtensor, netuid)
# Refresh metagraph
metagraph = subtensor.metagraph(netuid)
# Get current emissions and validate that Alice has gotten tao
alice_neuron = metagraph.neurons[0]
assert alice_neuron.validator_permit is True
assert alice_neuron.dividends == 1.0
assert alice_neuron.stake.tao > 0
assert alice_neuron.validator_trust > 0.99
assert alice_neuron.incentive < 0.5
assert alice_neuron.consensus < 0.5
assert alice_neuron.rank < 0.5
bob_neuron = metagraph.neurons[1]
assert bob_neuron.incentive > 0.5
assert bob_neuron.consensus > 0.5
assert bob_neuron.rank > 0.5
assert bob_neuron.trust == 1
bonds = subtensor.bonds(netuid)
assert bonds == [
(
0,
[
(0, 65535),
(1, 65535),
],
),
(
1,
[],
),
]
print("✅ Passed test_incentive")