@@ -357,10 +357,10 @@ async def test_async_sign_and_ec_recover(self,
357
357
unlockable_account_dual_type : ChecksumAddress ,
358
358
unlockable_account_pw : str ) -> None :
359
359
message = "This is a test"
360
- signiture = await async_w3 .geth .personal .sign (message , # type: ignore
360
+ signature = await async_w3 .geth .personal .sign (message , # type: ignore
361
361
unlockable_account_dual_type ,
362
362
unlockable_account_pw )
363
- address = await async_w3 .geth .personal .ec_recover (message , signiture ) # type: ignore
363
+ address = await async_w3 .geth .personal .ec_recover (message , signature ) # type: ignore
364
364
assert is_same_address (unlockable_account_dual_type , address )
365
365
366
366
@pytest .mark .asyncio
@@ -419,8 +419,8 @@ async def test_async_sign_typed_data(self,
419
419
unlockable_account_dual_type : ChecksumAddress ,
420
420
unlockable_account_pw : str ) -> None :
421
421
message = {"message" : "This is a test" }
422
- signiture = await async_w3 .geth .personal .sign_typed_data (message , # type: ignore
422
+ signature = await async_w3 .geth .personal .sign_typed_data (message , # type: ignore
423
423
unlockable_account_dual_type ,
424
424
unlockable_account_pw )
425
- address = await async_w3 .geth .personal .ec_recover (message , signiture ) # type: ignore
425
+ address = await async_w3 .geth .personal .ec_recover (message , signature ) # type: ignore
426
426
assert is_same_address (unlockable_account_dual_type , address )
0 commit comments