File tree Expand file tree Collapse file tree 6 files changed +11
-10
lines changed
domains/client/domain-operator/src Expand file tree Collapse file tree 6 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " subspace-bootstrap-node"
3- version = " 0.1.5 "
3+ version = " 0.1.6 "
44authors = [
55 " Nazar Mokrynskyi <nazar@mokrynskyi.com>" ,
66 " Shamil Gadelshin <shamilgadelshin@gmail.com>"
Original file line number Diff line number Diff line change 22name = " subspace-farmer"
33description = " Farmer for the Subspace Network Blockchain"
44license = " 0BSD"
5- version = " 0.1.5 "
5+ version = " 0.1.6 "
66authors = [" Nazar Mokrynskyi <nazar@mokrynskyi.com>" ]
77edition.workspace = true
88include = [
Original file line number Diff line number Diff line change 11[package ]
22name = " subspace-gateway"
3- version = " 0.1.5 "
3+ version = " 0.1.6 "
44authors = [
55 " Teor <teor@riseup.net>" ,
66 " Shamil Gadelshin <shamilgadelshin@gmail.com>"
Original file line number Diff line number Diff line change 11[package ]
22name = " subspace-node"
3- version = " 0.1.5 "
3+ version = " 0.1.6 "
44authors = [" Subspace Labs <https://subspace.network>" ]
55description = " A Subspace Network Blockchain node."
66edition.workspace = true
Original file line number Diff line number Diff line change @@ -6441,9 +6441,9 @@ async fn test_skip_empty_bundle_production() {
64416441 assert_eq ! ( alice. client. info( ) . best_number, domain_block_number + 1 ) ;
64426442}
64436443
6444- // This test is more unstable on macOS
6444+ // This test is more unstable on macOS and windows
64456445// TODO: find and fix the source of the instability (#3385)
6446- #[ cfg( not( target_os = "macos" ) ) ]
6446+ #[ cfg( not( any ( target_os = "macos" , target_os = "windows" ) ) ) ]
64476447#[ tokio:: test( flavor = "multi_thread" ) ]
64486448async fn test_bad_receipt_chain ( ) {
64496449 let directory = TempDir :: new ( ) . expect ( "Must be able to create temporary directory" ) ;
@@ -8193,6 +8193,7 @@ async fn test_current_block_number_used_as_new_account_nonce() {
81938193// This test is unstable on Windows, it likely contains a filesystem race condition between stopping
81948194// the node `bob`, and restarting that node with the same data directory.
81958195#[ tokio:: test( flavor = "multi_thread" ) ]
8196+ #[ cfg( not( target_os = "windows" ) ) ]
81968197async fn test_domain_node_starting_check ( ) {
81978198 use futures:: FutureExt ;
81988199 let directory = TempDir :: new ( ) . expect ( "Must be able to create temporary directory" ) ;
You can’t perform that action at this time.
0 commit comments