Skip to content

Commit 9438001

Browse files
committed
Update RSKIP529 to remove non-empty byte array restriction
1 parent 1d40dfe commit 9438001

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

IPs/RSKIP529.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ function getBaseEvent() public view returns (bytes memory);
5959
A method will be added to allow the Union Bridge contract address to set the current `base event` value in storage.
6060

6161
- If the caller is not the Union Bridge contract address then it should revert.
62-
- It should receive a non-empty array of bytes whose length is at most 128 bytes, which it then stores under the `baseEvent` storage key of the Bridge contract.
62+
- It should receive an array of bytes whose length is at most 128 bytes, which it then stores under the `baseEvent` storage key of the Bridge contract.
6363
- If there is an already existing value under the `baseEvent` storage key of the Bridge contract, it will be overriden by the new value.
6464

6565
**Method signature:**
@@ -110,7 +110,7 @@ function getSuperEvent() public view returns (bytes memory);
110110
A method will be added to allow the Union Bridge contract address to set the current `super event` value in storage.
111111

112112
- If the caller is not the Union Bridge contract address then it should revert.
113-
- It should receive a non-empty array of bytes whose length is at most 128 bytes, which it then stores under the `superEvent` storage key of the Bridge contract.
113+
- It should receive an array of bytes whose length is at most 128 bytes, which it then stores under the `superEvent` storage key of the Bridge contract.
114114
- If there is an already existing value under the `superEvent` storage key of the Bridge contract, it will be overriden by the new value.
115115

116116
**Method signature:**

0 commit comments

Comments
 (0)