refactor: Normalize signature verification

This commit is contained in:
Louis Holbrook
2021-10-18 10:07:03 +00:00
parent dbc046d946
commit ab8c510fa0
3 changed files with 5 additions and 3 deletions

View File

@@ -5,6 +5,7 @@ import logging
# external imports
import eth_tester
import coincurve
from chainlib.encode import TxHexNormalizer
from chainlib.connection import (
RPCConnection,
error_parser,
@@ -184,7 +185,8 @@ class TestRPCConnection(RPCConnection):
pk_bytes = self.backend.keystore.get(tx.sender)
pk = coincurve.PrivateKey(secret=pk_bytes)
result_address = private_key_to_address(pk)
assert strip_0x(result_address) == strip_0x(tx.sender)
tx_normalize = TxHexNormalizer()
assert tx_normalize.wallet_address(strip_0x(result_address)) == tx_normalize.wallet_address(strip_0x(tx.sender))
def sign_transaction(self, tx, passphrase=''):