Remove accidental recursive function call in TestLibs contract

This commit is contained in:
Amir Bandeali 2019-05-07 16:34:25 -07:00
parent 6763bce627
commit 8af253e9ab

View File

@ -124,15 +124,6 @@ contract TestLibs is
return isError;
}
function getOrderHash(Order memory order)
public
view
returns (bytes32 orderHash)
{
orderHash = getOrderHash(order);
return orderHash;
}
function getOrderSchemaHash()
public
pure