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
Please ensure you have addressed documentation updates if needed as part of this PR:
3
+
-[ ] I have created a separate PR on the sequence docs repository for documentation updates: [Link to docs PR](https://github.com/0xsequence/docs/pulls)
4
+
-[ ] No documentation update is needed for this change.
# Check if one of the required checkboxes in the 'Docs Checklist' is marked
21
+
if ! echo "$PR_BODY" | grep -Eq '\[x\] I have created a separate PR on the sequence docs repository for documentation updates|\[x\] No documentation update is needed for this change'; then
22
+
echo "Error: The 'Docs Checklist' section in the PR template has not been completed properly."
23
+
echo "Please ensure you have checked one of the options in the 'Docs Checklist' section."
Copy file name to clipboardExpand all lines: Assets/SequenceSDK/Ethereum/Tests/DecodeABITests.cs
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -337,7 +337,8 @@ public void TestDecodeNumber_throwsOnInvalidType<T>(T type)
337
337
catch(ArgumentExceptionex)
338
338
{
339
339
Assert.AreEqual(
340
-
$"Unable to decode to type \'{typeof(T)}\' when ABI expects to decode to type \'uint256\'. Supported types: {typeof(BigInteger)}, {typeof(int)}",
340
+
$"Unable to decode to type \'{typeof(T)}\' when ABI expects to decode to type \'uint256\'. Supported types: {typeof(BigInteger)}, {typeof(int)}, {typeof(long)}, {typeof(uint)}, {typeof(ulong)}",
341
+
341
342
ex.Message);
342
343
}
343
344
catch(Exceptionex)
@@ -401,7 +402,7 @@ public void TestDecodeBool_throwsOnInvalidType<T>(T type)
401
402
{
402
403
newobject[]{"0x000000000000000000000000000000000000000000000000000000000000000e"+"53444b20627920486f72697a6f6e000000000000000000000000000000000000",Encoding.UTF8.GetBytes("SDK by Horizon")},
0 commit comments