Skip to content
This repository was archived by the owner on May 23, 2023. It is now read-only.

Commit 5edb90b

Browse files
vubvub
authored andcommitted
Fixed test_transactions
1 parent c948dcc commit 5edb90b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ethereum/tests/test_transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def test_transaction(filename, testname, testdata):
2626
tx = rlp.decode(rlpdata, transactions.Transaction)
2727
blknum = int(testdata["blocknumber"])
2828
if blknum >= 1000000: # config.default_config["HOMESTEAD_FORK_BLKNUM"]:
29-
tx.check_low_s()
29+
tx.check_low_s_homestead()
3030
o["sender"] = tx.sender
3131
o["transaction"] = {
3232
"data": b'0x' * (len(tx.data) > 0) + encode_hex(tx.data),

0 commit comments

Comments
 (0)