Skip to content

Commit

Permalink
ci: bump devnet
Browse files Browse the repository at this point in the history
  • Loading branch information
penovicp committed Mar 2, 2024
1 parent d56be0c commit 25fc780
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# TODO - periodically check if conditional services are supported; https://github.com/actions/runner/issues/822
services:
devnet:
image: ${{ (inputs.use-devnet) && 'shardlabs/starknet-devnet-rs:b41e566a3f17aa0e51871f02d5165959e50ce358-amd-seed0' || '' }}
image: ${{ (inputs.use-devnet) && 'shardlabs/starknet-devnet-rs:0.0.3-seed0' || '' }}
ports:
- 5050:5050

Expand Down
2 changes: 1 addition & 1 deletion src/channel/rpc_0_6.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ export class RpcChannel {
) {
const block_id = new Block(blockIdentifier).identifier;
let flags = {};
if (isVersion('0.6', await this.getSpecVersion())) {
if (!isVersion('0.5', await this.getSpecVersion())) {
flags = {
simulation_flags: skipValidate ? [RPC.ESimulationFlag.SKIP_VALIDATE] : [],
};
Expand Down

0 comments on commit 25fc780

Please sign in to comment.