Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes discovered while bringing up the pre-launch testnet #4527

Merged
merged 37 commits into from
Mar 15, 2024
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
e577139
Have miners abort signing a block if the burn tip changes
jferrant Mar 8, 2024
db8f0cc
chore: log coordinator state
obycode Mar 9, 2024
d56895a
feat: use block proposal struct for miner -> signers comms. check cla…
kantai Mar 9, 2024
c6d1bc1
Merge pull request #4511 from stacks-network/feat/proposal-reward-set…
kantai Mar 9, 2024
b9c9ece
feat: add a parity check and filter events sent to the signer instances
kantai Mar 9, 2024
18ad724
Merge pull request #4512 from stacks-network/feat/parity-check-signer…
kantai Mar 9, 2024
b61b2be
logs: signer block responses to info. display formatting for block re…
kantai Mar 9, 2024
9232550
logs: better miner assembly and broadcasting logging
kantai Mar 9, 2024
8cdbf08
logs: add coordinator id to signer binary logging
kantai Mar 9, 2024
a736360
logs: improved rejection logging, debug logs in the db
kantai Mar 9, 2024
31d5227
chore: cleanup excessive logging
obycode Mar 8, 2024
dd95ad0
chore: remove unused variable
obycode Mar 8, 2024
9997c1b
Cleanup outdated signers
jferrant Mar 9, 2024
59f2377
Cleanup outdated signer within refresh signer
jferrant Mar 9, 2024
d1d1365
fix: try not deleting accepted blocks from signerDB
hstove Mar 9, 2024
d79d26b
Merge pull request #4514 from stacks-network/fix/dont-remove-blocks
obycode Mar 9, 2024
1d09299
feat: signer does not treat repeated proposals as new
kantai Mar 9, 2024
fa691c2
Merge pull request #4515 from stacks-network/feat/signer-ignore-repeats
kantai Mar 9, 2024
d24e1a0
chore: use index to make the code more readable
obycode Mar 9, 2024
249ee53
Merge pull request #4513 from stacks-network/bugfix/cleanup-outdated-…
obycode Mar 9, 2024
f077e08
fix: use http/1.1, not http/1.0
obycode Mar 10, 2024
a1c226c
feat: select coordinator just from pubkey alone
hstove Mar 11, 2024
830b10d
chore: cleanup unused field
obycode Mar 10, 2024
fd17501
feat: skip rest of loop when signer's tenure has completed
obycode Mar 11, 2024
6daf973
logs: quiet warning when signer is not registered for future cycle
obycode Mar 11, 2024
52f2c99
Merge pull request #4516 from stacks-network/brice/minor-changes
obycode Mar 11, 2024
17656a3
chore: ensure all http/1.1 requests are properly structured
obycode Mar 11, 2024
7891f7e
feat: add const to determine whether to rotate coordinator
hstove Mar 11, 2024
3202e27
fix: use two different blocks for signing test
obycode Mar 11, 2024
24a177d
Merge pull request #4517 from stacks-network/fix/dont-rotate-coordina…
hstove Mar 11, 2024
0476037
Merge pull request #4518 from stacks-network/http-1.1
obycode Mar 11, 2024
481b01c
fix: add reward cycle to signerdb
obycode Mar 12, 2024
fc617a2
Merge pull request #4525 from stacks-network/feat/cycle-keyed-db
obycode Mar 12, 2024
b04c240
Merge branch 'next' into dream-team-fixes
obycode Mar 13, 2024
49eb61a
chore: delete commented code
obycode Mar 13, 2024
6e4d9cc
chore: add TODO for tracking burnchain/stacks views
kantai Mar 15, 2024
d170065
Merge branch 'next' into dream-team-fixes
zone117x Mar 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: remove unused variable
  • Loading branch information
obycode committed Mar 9, 2024
commit dd95ad00e8fe4a62b9ebc4409e4cce8ddc659e53
1 change: 0 additions & 1 deletion testnet/stacks-node/src/nakamoto_node/miner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ impl BlockMinerThread {

/// Stop a miner tenure by blocking the miner and then joining the tenure thread
pub fn stop_miner(globals: &Globals, prior_miner: JoinHandle<()>) {
let id = prior_miner.thread().id();
globals.block_miner();
prior_miner
.join()
Expand Down