Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Misc changes #2025

Merged
merged 2 commits into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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