Replies: 3 comments 3 replies
-
From @wileyj
|
Beta Was this translation helpful? Give feedback.
0 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Can multiple bootstrap nodes be used and in what use case would this be optimal?
https://github.com/stacks-network/stacks-blockchain/blob/master/testnet/stacks-node/src/config.rs#L1782-L1794
What are deny nodes?
https://github.com/stacks-network/stacks-blockchain/blob/master/testnet/stacks-node/src/config.rs#L1796-L1805
Where can the custom address for receiving coinbase transaction rewards be configured? Is it parsed when committing the rewarding block with RewardSetInfo or where is it? https://github.com/stacks-network/stacks-blockchain/blob/feat/2.1.0.0.0-rc2/testnet/stacks-node/src/neon_node.rs#L1733
Igor: Degens want to know how to configure the Stacks coinbase address (pay to contract).
The information will be encoded in the Commit op
Related to keychain file operations, multiple microblocks in the same block would have the same block_height and salt. Would the keypair be the same as well?
https://github.com/stacks-network/stacks-blockchain/blob/master/testnet/stacks-node/src/keychain.rs#L112-L127
/// Generate a microblock signing key for this burnchain block height.
///
salt
can be any byte string; in practice, it's the parent Stacks block's block ID hash.pub fn make_microblock_secret_key( &self, block_height: u64, salt: &[u8])
Related to files management, from Cargo.toml the packages such as stx_genesis, clarity and stacks_common are present in folders where their paths are specified. For the stacks package there is no folder and it would at the repo level.
stacks = { package = "blockstack-core", path = "../../." }
What are the files that imports such as use stacks::address::AddressHashMode;,
use stacks::burnchains::BurnchainSigner; are coming from ?
In other rust projects the analyzer auto-display types on variable declarations, on hover displays a pop-up with docs information and when using ctrl+click it goes to instantiations. When trying it on this project it just says loading and nothing from the above happens. The project and the files are a lot bigger than the ones compared where it works, could this be the problem or could it be something else?
Beta Was this translation helpful? Give feedback.
All reactions