Skip to content

Commit 41c07d6

Browse files
authored
Comment call to not yet existing rpc (#3942)
<!-- Reference any GitHub issues resolved by this PR --> Closes # ## Introduced changes <!-- A brief description of the changes --> - Fix release ## Checklist <!-- Make sure all of these are complete --> - [ ] Linked relevant issue - [ ] Updated relevant documentation - [ ] Added relevant tests - [ ] Performed self-review of the code - [ ] Added changes to `CHANGELOG.md`
1 parent 3f14dce commit 41c07d6

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

scripts/smoke_test.sh

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,10 @@ scarb cache clean
5353

5454
# Check cast
5555

56-
if ! $SNCAST_PATH call \
57-
--url "$RPC_URL" \
58-
--contract-address 0x06b248bde9ce00d69099304a527640bc9515a08f0b49e5168e2096656f207e1d \
59-
--function "get" --calldata 0x1 | grep -q $'Success: Call completed\n\nResponse: 0x0\nResponse Raw: [0x0]'; then
60-
exit 1
61-
fi
56+
# TODO: (#3937) New RPC URL is not available yet
57+
# if ! $SNCAST_PATH call \
58+
# --url "$RPC_URL" \
59+
# --contract-address 0x06b248bde9ce00d69099304a527640bc9515a08f0b49e5168e2096656f207e1d \
60+
# --function "get" --calldata 0x1 | grep -q $'Success: Call completed\n\nResponse: 0x0\nResponse Raw: [0x0]'; then
61+
# exit 1
62+
# fi

0 commit comments

Comments
 (0)