Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into release/v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
briancorbin committed Oct 12, 2022
2 parents c335d44 + 3432c59 commit 92ede7d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 31 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ jobs:
run: |
mkdir -pv build_artifacts/${{ matrix.network }}/bin
cp /var/tmp/*.css build_artifacts/${{ matrix.network }}
cp target/release/mc-full-service build_artifacts/${{ matrix.network }}
cp target/release/mc-transaction-signer build_artifacts/${{ matrix.network }}
cp target/release/mc-validator-service build_artifacts/${{ matrix.network }}
cp target/release/full-service build_artifacts/${{ matrix.network }}
cp target/release/transaction-signer build_artifacts/${{ matrix.network }}
cp target/release/validator-service build_artifacts/${{ matrix.network }}
- name: Create Artifact
run: |
Expand Down
2 changes: 1 addition & 1 deletion full-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
build = "build.rs"

[[bin]]
name = "mc-full-service"
name = "full-service"
path = "src/bin/main.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion full-service/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ pub struct PeersConfig {
pub tx_source_urls: Option<Vec<String>>,

/// Chain Id
#[structopt(long)]
#[structopt(default_value = "", long)]
pub chain_id: String,
}

Expand Down
4 changes: 2 additions & 2 deletions tools/run-fs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ if [ "$2" != "--no-build" ]; then
echo "Building"
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
$SCRIPT_DIR/build-fs.sh $NET
cp $SCRIPT_DIR/../target/release/mc-full-service $WORK_DIR
cp $SCRIPT_DIR/../target/release/full-service $WORK_DIR
fi

mkdir -p ${WALLET_DB_DIR}
$WORK_DIR/mc-full-service \
$WORK_DIR/full-service \
--wallet-db ${WALLET_DB_DIR}/wallet.db \
--ledger-db ${LEDGER_DB_DIR} \
--peer mc://node1.${PEER_DOMAIN} \
Expand Down
22 changes: 0 additions & 22 deletions tools/run-testnet-no-wallet-db.sh

This file was deleted.

2 changes: 1 addition & 1 deletion transaction-signer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ version = "2.0.0"
edition = "2021"

[[bin]]
name = "mc-transaction-signer"
name = "transaction-signer"
path = "src/bin/main.rs"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion validator/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
license = "GPL-3.0"

[[bin]]
name = "mc-validator-service"
name = "validator-service"
path = "src/bin/main.rs"

[dependencies]
Expand Down

0 comments on commit 92ede7d

Please sign in to comment.