Skip to content

Commit

Permalink
Misc changes (#2025)
Browse files Browse the repository at this point in the history
- Remove defunct twitch stream link
- Reword readme
- Expand install script error message
- Remove comment in test
  • Loading branch information
casey authored Apr 17, 2023
1 parent 6a2fb91 commit 3be53a8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ where the project is and where it's going.
Join [the Discord server](https://discord.gg/87cjuz4FYg) to chat with fellow
ordinal degenerates.

Tune in to the [Twitch stream](https://www.twitch.tv/ordinalsofficial) to watch us work on this project!

Wallet
------

Expand Down Expand Up @@ -91,7 +89,7 @@ cd ord
cargo build --release
```

The default location for the `ord` binary once built is `./target/release/ord`.
Once built, the `ord` binary can be found at `./target/release/ord`.

`ord` requires `rustc` version 1.67.0 or later. Run `rustc --version` to ensure you have this version. Run `rustup update` to get the latest stable release.

Expand Down
3 changes: 2 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ if [ -z ${target-} ]; then
x86_64-Linux) target=x86_64-unknown-linux-gnu;;
*)
err 'Could not determine target from output of `uname -m`-`uname -s`, please use `--target`:' $uname_target
err 'Please try building from source: https://github.com/casey/ord#building'
err 'Target architecture is not supported by this install script.'
err 'Consider opening an issue or building from source: https://github.com/casey/ord'
;;
esac
fi
Expand Down
1 change: 0 additions & 1 deletion tests/wallet/cardinals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ fn cardinals() {
let rpc_server = test_bitcoincore_rpc::spawn();
create_wallet(&rpc_server);

// this creates 2 more cardinal outputs and one inscribed output
inscribe(&rpc_server);

let all_outputs = CommandBuilder::new("wallet outputs")
Expand Down

0 comments on commit 3be53a8

Please sign in to comment.