Skip to content

Commit d466a5c

Browse files
committed
Merge branch 'develop' into fix/tenure-downloader
2 parents 99e4e4b + 381ee9b commit d466a5c

Some content is hidden

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

68 files changed

+29
-45
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

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

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

docs/profiling.md

Lines changed: 10 additions & 10 deletions

testnet/stacks-node/Cargo.toml renamed to stacks-node/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ pico-args = "0.5.0"
1212
serde = "1"
1313
serde_derive = "1"
1414
serde_json = { version = "1.0", features = ["arbitrary_precision", "raw_value"] }
15-
stacks = { package = "stackslib", path = "../../stackslib" }
16-
stx-genesis = { path = "../../stx-genesis"}
15+
stacks = { package = "stackslib", path = "../stackslib" }
16+
stx-genesis = { path = "../stx-genesis"}
1717
base64 = "0.12.0"
1818
backtrace = "0.3.50"
1919
libc = "0.2.151"
2020
slog = { version = "2.5.2", features = [ "max_level_trace" ] }
21-
clarity = { path = "../../clarity" }
22-
stacks-common = { path = "../../stacks-common" }
21+
clarity = { path = "../clarity" }
22+
stacks-common = { path = "../stacks-common" }
2323
chrono = "0.4.19"
2424
regex = "1"
25-
libsigner = { path = "../../libsigner" }
25+
libsigner = { path = "../libsigner" }
2626
url = "2.1.0"
2727
rand = { workspace = true }
2828
hashbrown = { workspace = true }
@@ -44,10 +44,10 @@ tikv-jemallocator = {workspace = true}
4444
warp = "0.3.5"
4545
tokio = "1.15"
4646
reqwest = { version = "0.11", default-features = false, features = ["blocking", "json", "rustls", "rustls-tls"] }
47-
clarity = { path = "../../clarity", features = ["default", "testing"]}
48-
stacks-common = { path = "../../stacks-common", features = ["default", "testing"] }
49-
stacks = { package = "stackslib", path = "../../stackslib", features = ["default", "testing"] }
50-
stacks-signer = { path = "../../stacks-signer", features = ["testing"] }
47+
clarity = { path = "../clarity", features = ["default", "testing"]}
48+
stacks-common = { path = "../stacks-common", features = ["default", "testing"] }
49+
stacks = { package = "stackslib", path = "../stackslib", features = ["default", "testing"] }
50+
stacks-signer = { path = "../stacks-signer", features = ["testing"] }
5151
tracing = "0.1.37"
5252
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
5353
mutants = "0.0.3"
File renamed without changes.

0 commit comments

Comments
 (0)