Skip to content

Commit

Permalink
Add missing trailing newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
dpc committed Aug 25, 2022
1 parent 1020b68 commit 18024ef
Show file tree
Hide file tree
Showing 20 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"containerUser": "nonroot",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspace/fedimint,type=bind,consistency=cached",
"workspaceFolder": "/workspace/fedimint"
}
}
2 changes: 1 addition & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/target

# Nix build directory.
/result
/result
2 changes: 1 addition & 1 deletion .github/workflows/linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: gaurav-nelson/github-action-markdown-link-check@v1
- uses: gaurav-nelson/github-action-markdown-link-check@v1
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ ln1
ln2
it
.idea
.tmpenv
.tmpenv
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
2 changes: 1 addition & 1 deletion docs/architecture.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/macos.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ Some modern IDEs can use docker containers as development environments. Which me

This project includes a development container which has been tested with [VSCode](https://code.visualstudio.com). More information on VSCode development containers can be found [here](https://code.visualstudio.com/docs/remote/containers). More information on this project's development container can be found [here](../.devcontainer/README.md).

To get started, simply open the project with VSCode and follow its prompt to use the development container. You may also wish to consider [these](https://code.visualstudio.com/docs/remote/containers#_installation) instructions.
To get started, simply open the project with VSCode and follow its prompt to use the development container. You may also wish to consider [these](https://code.visualstudio.com/docs/remote/containers#_installation) instructions.
Binary file modified docs/tmuxinator.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion fedimint-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ tbs = { path = "../crypto/tbs" }
thiserror = "1.0.23"
tracing ="0.1.22"
threshold_crypto = { git = "https://github.com/fedimint/threshold_crypto" }
bitcoin_hashes = "0.10.0"
bitcoin_hashes = "0.10.0"
2 changes: 1 addition & 1 deletion scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ Here you can find scripts for running and testing Fedimint:
* `cli-test.sh` - Runs a CLI-based integration test (required for PRs)
* `final-checks.sh` - Checks to run before opening a PR
* `tmux-user-shell.sh` - Helper script that prepares the tmuxinator setup (generate some blocks, fund wallet, …)
* `tmuxinator.sh` - Sets up a complete fedimint federation with Lightning gateway in tmux
* `tmuxinator.sh` - Sets up a complete fedimint federation with Lightning gateway in tmux
2 changes: 1 addition & 1 deletion scripts/cli-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ INVOICE_STATUS="$(echo $INVOICE_RESULT | jq -r '.status')"
INVOICE="$($FM_MINT_CLIENT ln-invoice '100000msat' 'integration test')"
INVOICE_RESULT=$($FM_LN2 pay $INVOICE)
INVOICE_STATUS="$(echo $INVOICE_RESULT | jq -r '.status')"
[[ "$INVOICE_STATUS" = "complete" ]]
[[ "$INVOICE_STATUS" = "complete" ]]
2 changes: 1 addition & 1 deletion scripts/clientd-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ TXOUT_PROOF="$($FM_BTC_CLIENT gettxoutproof "[\"$TX_ID\"]")"
TRANSACTION="$($FM_BTC_CLIENT getrawtransaction $TX_ID)"

#perform peg-in
[[ $($FM_CLIENTD_CLI peg-in $TXOUT_PROOF $TRANSACTION| jq -r 'has("txid")') = true ]]
[[ $($FM_CLIENTD_CLI peg-in $TXOUT_PROOF $TRANSACTION| jq -r 'has("txid")') = true ]]
2 changes: 1 addition & 1 deletion scripts/final-checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ if [ "$1" == "nix" ]; then
nix-shell --run ./scripts/clientd-tests.sh
fi

echo "Tests succeeded"
echo "Tests succeeded"
2 changes: 1 addition & 1 deletion scripts/gw-reload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ cargo build --release --bin ln_gateway
$LN1 plugin stop ln_gateway &> /dev/null
$LN1 -k plugin subcommand=start plugin=$BIN_DIR/ln_gateway fedimint-cfg=$CFG_DIR &> /dev/null

echo "Gateway plugin reloaded"
echo "Gateway plugin reloaded"
2 changes: 1 addition & 1 deletion scripts/latency-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,4 +63,4 @@ echo "AVG LN RECEIVE TIME: $LN_RECEIVE seconds"
# Assert that avg runtimes are under 5 sec
[[ $(echo "$REISSUE < 5" | bc -l) = 1 ]]
[[ $(echo "$LN_SEND < 5" | bc -l) = 1 ]]
[[ $(echo "$LN_RECEIVE < 5" | bc -l) = 1 ]]
[[ $(echo "$LN_RECEIVE < 5" | bc -l) = 1 ]]
2 changes: 1 addition & 1 deletion scripts/lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ function get_raw_transaction() {
local TRANSACTION
TRANSACTION="$($FM_BTC_CLIENT getrawtransaction $TX_ID)"
echo $TRANSACTION
}
}
2 changes: 1 addition & 1 deletion scripts/pegin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ if [ "$USE_GATEWAY" == 1 ]; then $FM_LN1 gw-deposit "$TXOUT_PROOF" "$TRANSACTION

# Since the process is asynchronous have to come back to fetch the result later. We choose to do this right away and
# just block till we get our tokens.
$FM_MINT_CLIENT fetch
$FM_MINT_CLIENT fetch
2 changes: 1 addition & 1 deletion scripts/rust-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export RUST_LOG=info
source ./scripts/setup-tests.sh

export FM_TEST_DISABLE_MOCKS=1
cargo test --release -p fedimint-tests -- --test-threads=1
cargo test --release -p fedimint-tests -- --test-threads=1
2 changes: 1 addition & 1 deletion scripts/setup-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,4 @@ done
mine_blocks 101

# Open channel
open_channel
open_channel
2 changes: 1 addition & 1 deletion scripts/tmux-user-shell.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ echo " ln1, ln2: cli clients for the two lightning nodes (1 is gateway)"
echo " btc_client: cli client for bitcoind"
echo
echo Use mint-client-cli as follows:
mint-client-cli --help
mint-client-cli --help

0 comments on commit 18024ef

Please sign in to comment.