File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
components/clarity-repl/src/repl Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -305,6 +305,11 @@ jobs:
305305 target : x86_64-unknown-linux-gnu
306306 architecture : x64
307307 libc : glibc
308+ - os : ubuntu-latest
309+ platform : linux
310+ target : x86_64-unknown-linux-musl
311+ architecture : x64
312+ libc : musl
308313 - os : windows-latest
309314 platform : windows
310315 target : x86_64-pc-windows-msvc
@@ -317,11 +322,6 @@ jobs:
317322 platform : darwin
318323 target : aarch64-apple-darwin
319324 architecture : arm64
320- - os : ubuntu-latest
321- platform : linux
322- target : x86_64-unknown-linux-musl
323- architecture : x64
324- libc : musl
325325
326326 steps :
327327 - name : Configure git to use LF (Windows)
Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ impl ClarityInterpreter {
386386 . as_ref ( )
387387 . is_some_and ( |data| data. is_mainnet ) ;
388388 let chain_id = if is_mainnet {
389- CHAIN_ID_MAINNET
389+ CHAIN_ID_MAINNET . clone ( )
390390 } else {
391391 CHAIN_ID_TESTNET
392392 } ;
You can’t perform that action at this time.
0 commit comments