Skip to content

Commit 04385f0

Browse files
committed
Merge branch 'develop' of https://github.com/stacks-network/stacks-core into feat/signer-two-phase-commit-impl
2 parents 2d778cb + 26112c7 commit 04385f0

File tree

93 files changed

+5356
-885
lines changed

Some content is hidden

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

93 files changed

+5356
-885
lines changed

.github/workflows/github-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ jobs:
9191
- arch: macos # excludes macos-armv7
9292
cpu: armv7
9393
- arch: macos # excludes macos-x64
94-
cpu: x86_64
94+
cpu: x86-64
9595
steps:
9696
- name: Build Binary (${{ matrix.arch }}_${{ matrix.cpu }})
9797
uses: stacks-network/actions/stacks-core/release/create-source-binary@main

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to the versioning scheme outlined in the [README.md](README.md).
77

8-
## Unreleased
8+
## [3.2.0.0.1]
9+
### Added
10+
11+
- Adds node-config-docsgen to automatically create config documentation (#6227)
912

1013
### Fixed
1114

Cargo.lock

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

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ members = [
1111
"libsigner",
1212
"stacks-signer",
1313
"stacks-node",
14-
"contrib/tools/config-docs-generator"]
14+
]
15+
16+
exclude = ["contrib/tools/config-docs-generator"]
1517

1618
# Dependencies we want to keep the same between workspace members
1719
[workspace.dependencies]

clarity/src/vm/costs/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ impl TrackerData {
949949
if cost_function_ref.contract_id == boot_costs_id {
950950
m.insert(
951951
f,
952-
ClarityCostFunctionEvaluator::Default(cost_function_ref, *f, v),
952+
ClarityCostFunctionEvaluator::Default(cost_function_ref, f.clone(), v),
953953
);
954954
} else {
955955
m.insert(f, ClarityCostFunctionEvaluator::Clarity(cost_function_ref));

clarity/src/vm/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ pub fn apply(
280280
env.call_stack.insert(&identifier, track_recursion);
281281
let mut resp = match function {
282282
CallableType::NativeFunction(_, function, cost_function) => {
283-
runtime_cost(*cost_function, env, evaluated_args.len())
283+
runtime_cost(cost_function.clone(), env, evaluated_args.len())
284284
.map_err(Error::from)
285285
.and_then(|_| function.apply(evaluated_args, env))
286286
}
@@ -290,7 +290,7 @@ pub fn apply(
290290
} else {
291291
evaluated_args.len() as u64
292292
};
293-
runtime_cost(*cost_function, env, cost_input)
293+
runtime_cost(cost_function.clone(), env, cost_input)
294294
.map_err(Error::from)
295295
.and_then(|_| function.apply(evaluated_args, env))
296296
}

0 commit comments

Comments
 (0)