Change verifyingContractAddress -> verifyingContract everywhere

This commit is contained in:
Amir Bandeali
2019-09-18 11:50:35 -07:00
parent b359738037
commit ae75aed55e
43 changed files with 86 additions and 86 deletions

View File

@@ -22,7 +22,7 @@ blockchainTests('LibZeroExTransaction', env => {
signerAddress: constants.NULL_ADDRESS,
data: constants.NULL_BYTES,
domain: {
verifyingContractAddress: constants.NULL_ADDRESS,
verifyingContract: constants.NULL_ADDRESS,
chainId: 0,
},
};
@@ -58,7 +58,7 @@ blockchainTests('LibZeroExTransaction', env => {
...EMPTY_TRANSACTION,
domain: {
...EMPTY_TRANSACTION.domain,
verifyingContractAddress: libZeroExTransactionContract.address,
verifyingContract: libZeroExTransactionContract.address,
},
});
});
@@ -72,7 +72,7 @@ blockchainTests('LibZeroExTransaction', env => {
data: randomAssetData(),
domain: {
...EMPTY_TRANSACTION.domain,
verifyingContractAddress: libZeroExTransactionContract.address,
verifyingContract: libZeroExTransactionContract.address,
},
});
});
@@ -128,7 +128,7 @@ blockchainTests('LibZeroExTransaction', env => {
data: randomAssetData(),
// The domain is not used in this test, so it's okay if it is left empty.
domain: {
verifyingContractAddress: constants.NULL_ADDRESS,
verifyingContract: constants.NULL_ADDRESS,
chainId: 0,
},
});