Skip to content

Commit

Permalink
test: reduce number of substrate calls in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rsporny committed Jan 9, 2025
1 parent 96a025a commit 637d0ed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions E2E-tests/src/substrate_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,8 +647,7 @@ def get_block_header(self, block_no):
return self.substrate.get_block_header(block_number=block_no)["header"]

def get_block(self, block_no):
block_hash = self.substrate.get_block_hash(block_no)
return self.substrate.get_block(block_hash)
return self.substrate.get_block(block_number=block_no)

def get_block_author(self, block_number):
"""Custom implementation of substrate.get_block(include_author=True) to get block author.
Expand Down

0 comments on commit 637d0ed

Please sign in to comment.