You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: IPs/RSKIP529.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ function getBaseEvent() public view returns (bytes memory);
59
59
A method will be added to allow the Union Bridge contract address to set the current `base event` value in storage.
60
60
61
61
- 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.
63
63
- If there is an already existing value under the `baseEvent` storage key of the Bridge contract, it will be overriden by the new value.
64
64
65
65
**Method signature:**
@@ -110,7 +110,7 @@ function getSuperEvent() public view returns (bytes memory);
110
110
A method will be added to allow the Union Bridge contract address to set the current `super event` value in storage.
111
111
112
112
- 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.
114
114
- If there is an already existing value under the `superEvent` storage key of the Bridge contract, it will be overriden by the new value.
0 commit comments