File tree Expand file tree Collapse file tree 1 file changed +0
-32
lines changed
Expand file tree Collapse file tree 1 file changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -634,38 +634,6 @@ def test_withdrawals_zero_amount(_):
634634 yield BlockchainTest (pre = pre , post = post , blocks = [block ])
635635
636636
637- @test_from (WITHDRAWALS_FORK )
638- def test_withdrawals_overflowing_balance (_ ):
639- """
640- Test Withdrawals that overflows an account.
641- """
642- pre = {
643- TestAddress : Account (balance = 1000000000000000000000 , nonce = 0 ),
644- to_address (0x100 ): Account (
645- balance = (2 ** 256 - 1 ),
646- ),
647- }
648- blocks = [
649- Block (
650- withdrawals = [
651- Withdrawal (
652- index = 0 ,
653- validator = 0 ,
654- address = to_address (0x100 ),
655- amount = 1 ,
656- )
657- ],
658- exception = "invalid withdrawal" ,
659- )
660- ]
661- post = {
662- to_address (0x100 ): Account (
663- balance = (2 ** 256 - 1 ),
664- ),
665- }
666- yield BlockchainTest (pre = pre , post = post , blocks = blocks )
667-
668-
669637@test_from (WITHDRAWALS_FORK )
670638def test_large_withdrawals (_ : str ):
671639 """
You can’t perform that action at this time.
0 commit comments