Fix off by 1 error

This commit is contained in:
Amir Bandeali 2019-08-30 10:33:02 -07:00
parent d0869a8840
commit b20503c5a2

View File

@ -198,7 +198,7 @@ contract TestValidatorWallet is
// Decode the order and hash // Decode the order and hash
LibOrder.Order memory order; LibOrder.Order memory order;
(order, hash) = abi.decode( (order, hash) = abi.decode(
data.slice(4, data.length - 1), data.slice(4, data.length),
(LibOrder.Order, bytes32) (LibOrder.Order, bytes32)
); );
// Use the Exchange to calculate the hash of the order and assert // Use the Exchange to calculate the hash of the order and assert
@ -211,7 +211,7 @@ contract TestValidatorWallet is
// Decode the transaction and hash // Decode the transaction and hash
LibZeroExTransaction.ZeroExTransaction memory transaction; LibZeroExTransaction.ZeroExTransaction memory transaction;
(transaction, hash) = abi.decode( (transaction, hash) = abi.decode(
data.slice(4, data.length - 1), data.slice(4, data.length),
(LibZeroExTransaction.ZeroExTransaction, bytes32) (LibZeroExTransaction.ZeroExTransaction, bytes32)
); );
// Use the Exchange to calculate the hash of the transaction and assert // Use the Exchange to calculate the hash of the transaction and assert