We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76cf32b commit fde7aeaCopy full SHA for fde7aea
tests/test_exceptions.py
@@ -44,6 +44,11 @@ def test_negative_delegate_vesting_shares(viz):
44
viz.delegate_vesting_shares(delegator='alice', delegatee='bob', amount=-10)
45
46
47
+def test_self_delegate_vesting_shares(viz, default_account):
48
+ with pytest.raises(UnhandledRPCError, match='delegator != delegatee: You cannot delegate SHARES to yourself'):
49
+ viz.delegate_vesting_shares(delegator=default_account, delegatee=default_account, amount=10)
50
+
51
52
def test_too_much_beneficiaries(viz, default_account):
53
beneficiaries = [{"account": default_account, "weight": 50}] * 256
54
0 commit comments