aboutsummaryrefslogtreecommitdiffstats
path: root/packages/contracts/src
diff options
context:
space:
mode:
authorRemco Bloemen <remco@wicked.ventures>2018-06-13 23:13:59 +0800
committerRemco Bloemen <remco@wicked.ventures>2018-06-23 19:53:38 +0800
commit88982f98ff2ece93831b1442d2c4e1ef0878d919 (patch)
tree2f009da04730fe8ed8f172ed230b15992b2400f3 /packages/contracts/src
parent2ea0b839d3f704ea85c992912b86db0cb49f80ea (diff)
downloaddexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.tar
dexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.tar.gz
dexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.tar.bz2
dexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.tar.lz
dexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.tar.xz
dexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.tar.zst
dexon-sol-tools-88982f98ff2ece93831b1442d2c4e1ef0878d919.zip
Rename read/writeBytesWithLength
Diffstat (limited to 'packages/contracts/src')
-rw-r--r--packages/contracts/src/contracts/current/protocol/AssetProxy/MixinERC721Transfer.sol2
-rw-r--r--packages/contracts/src/contracts/current/test/TestLibBytes/TestLibBytes.sol8
-rw-r--r--packages/contracts/src/contracts/current/utils/LibBytes/LibBytes.sol4
3 files changed, 7 insertions, 7 deletions
diff --git a/packages/contracts/src/contracts/current/protocol/AssetProxy/MixinERC721Transfer.sol b/packages/contracts/src/contracts/current/protocol/AssetProxy/MixinERC721Transfer.sol
index 2df9725b4..944068bbb 100644
--- a/packages/contracts/src/contracts/current/protocol/AssetProxy/MixinERC721Transfer.sol
+++ b/packages/contracts/src/contracts/current/protocol/AssetProxy/MixinERC721Transfer.sol
@@ -82,7 +82,7 @@ contract MixinERC721Transfer is
token = assetData.readAddress(0);
tokenId = assetData.readUint256(20);
if (assetData.length > 52) {
- receiverData = assetData.readBytes(52);
+ receiverData = assetData.readBytesWithLength(52);
}
return (
diff --git a/packages/contracts/src/contracts/current/test/TestLibBytes/TestLibBytes.sol b/packages/contracts/src/contracts/current/test/TestLibBytes/TestLibBytes.sol
index 96020906c..84b9e4673 100644
--- a/packages/contracts/src/contracts/current/test/TestLibBytes/TestLibBytes.sol
+++ b/packages/contracts/src/contracts/current/test/TestLibBytes/TestLibBytes.sol
@@ -192,7 +192,7 @@ contract TestLibBytes {
/// @param b Byte array containing nested bytes.
/// @param index Index of nested bytes.
/// @return result Nested bytes.
- function publicReadBytes(
+ function publicReadBytesWithLength(
bytes memory b,
uint256 index
)
@@ -200,7 +200,7 @@ contract TestLibBytes {
pure
returns (bytes memory result)
{
- result = b.readBytes(index);
+ result = b.readBytesWithLength(index);
return result;
}
@@ -209,7 +209,7 @@ contract TestLibBytes {
/// @param index Index in byte array of <input>.
/// @param input bytes to insert.
/// @return b Updated input byte array
- function publicWriteBytes(
+ function publicWriteBytesWithLength(
bytes memory b,
uint256 index,
bytes memory input
@@ -218,7 +218,7 @@ contract TestLibBytes {
pure
returns (bytes memory)
{
- b.writeBytes(index, input);
+ b.writeBytesWithLength(index, input);
return b;
}
diff --git a/packages/contracts/src/contracts/current/utils/LibBytes/LibBytes.sol b/packages/contracts/src/contracts/current/utils/LibBytes/LibBytes.sol
index 05cf53df5..ad3a35aef 100644
--- a/packages/contracts/src/contracts/current/utils/LibBytes/LibBytes.sol
+++ b/packages/contracts/src/contracts/current/utils/LibBytes/LibBytes.sol
@@ -371,7 +371,7 @@ library LibBytes {
/// @param b Byte array containing nested bytes.
/// @param index Index of nested bytes.
/// @return result Nested bytes.
- function readBytes(
+ function readBytesWithLength(
bytes memory b,
uint256 index
)
@@ -405,7 +405,7 @@ library LibBytes {
/// @param b Byte array to insert <input> into.
/// @param index Index in byte array of <input>.
/// @param input bytes to insert.
- function writeBytes(
+ function writeBytesWithLength(
bytes memory b,
uint256 index,
bytes memory input