Skip to content

Commit 0d1f2a3

Browse files
committed
Merge branch 'develop' of https://github.com/stacks-network/stacks-core into chore/fix-clippy-format-args
2 parents 92885e8 + 381ee9b commit 0d1f2a3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+71
-88
lines changed

.github/actions/bitcoin-int-tests/Dockerfile.atlas-test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ RUN cd / && tar -xvzf bitcoin-25.0-x86_64-linux-gnu.tar.gz
1414
RUN ln -s /bitcoin-25.0/bin/bitcoind /bin/
1515

1616
ENV BITCOIND_TEST 1
17-
WORKDIR /src/testnet/stacks-node
17+
WORKDIR /src/stacks-node
1818
RUN cargo test -- --test-threads 1 --ignored tests::neon_integrations::atlas_integration_test
1919
RUN cargo test -- --test-threads 1 --ignored tests::neon_integrations::atlas_stress_integration_test

.github/actions/bitcoin-int-tests/Dockerfile.generic.bitcoin-tests

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ WORKDIR /src/
44

55
COPY . .
66

7-
WORKDIR /src/testnet/stacks-node
7+
WORKDIR /src/stacks-node
88

99
RUN rustup component add llvm-tools-preview && \
1010
cargo install grcov

.github/actions/bitcoin-int-tests/Dockerfile.large-genesis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ RUN cargo test --no-run --workspace && \
2222
cargo build --workspace
2323

2424
ENV BITCOIND_TEST 1
25-
RUN cd testnet/stacks-node && cargo test --release --features prod-genesis-chainstate -- --test-threads 1 --ignored neon_integrations::bitcoind_integration_test
25+
RUN cd stacks-node && cargo test --release --features prod-genesis-chainstate -- --test-threads 1 --ignored neon_integrations::bitcoind_integration_test
2626

2727
RUN grcov . --binary-path ./target/debug/ -s . -t lcov --branch --ignore-not-existing --ignore "/*" -o lcov.info
2828

.gitignore

Lines changed: 2 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,12 @@ secrets*
4141
# vim
4242
*.swp
4343

44-
#Docker
45-
Docker/blockstore.ini
46-
47-
#Docs
48-
api/templates/index.html
49-
api/data
50-
51-
# testnets
52-
testnet-logs/
53-
testnet.log
54-
testnet/index.html
55-
5644
# virtualenvs
5745
.venv
5846

5947
# will have compiled files and executables
60-
/target/
61-
/testnet/helium/target/
62-
/contrib/tools/puppet-chain/target/
63-
/contrib/core-contract-tests/.cache/
64-
/contrib/tools/config-docs-generator/target/
48+
target/
49+
contrib/tools/config-docs-generator/target/
6550

6651
# These are backup files generated by rustfmt
6752
**/*.rs.bk
@@ -71,7 +56,6 @@ tarpaulin-report.html
7156
osxcross
7257
osxcross*.tar.xz
7358
.DS_Store
74-
testnet/stacks-node/target
7559

7660
net-test/etc/*.toml
7761
net-test/etc/*.conf

CHANGELOG.md

Lines changed: 2 additions & 0 deletions

Cargo.lock

Lines changed: 18 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ members = [
99
"libstackerdb",
1010
"libsigner",
1111
"stacks-signer",
12-
"testnet/stacks-node",
12+
"stacks-node",
1313
"contrib/tools/config-docs-generator"]
1414

1515
# Dependencies we want to keep the same between workspace members

clarity/Cargo.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@ rusqlite = { workspace = true, optional = true }
3737
version = "1.0"
3838
features = ["arbitrary_precision", "unbounded_depth"]
3939

40-
[dependencies.time]
41-
version = "0.2.23"
42-
features = ["std"]
43-
4440
[dev-dependencies]
4541
assert-json-diff = "1.0.0"
4642
mutants = "0.0.3"

contrib/nix/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
(craneLib.fileset.commonCargoSources ../../stacks-common)
111111
(craneLib.fileset.commonCargoSources ../../stackslib)
112112
(craneLib.fileset.commonCargoSources ../../stx-genesis)
113-
(craneLib.fileset.commonCargoSources ../../testnet/stacks-node)
113+
(craneLib.fileset.commonCargoSources ../../stacks-node)
114114
];
115115
};
116116

docs/mining.md

Lines changed: 2 additions & 2 deletions

0 commit comments

Comments
 (0)