Skip to content

Commit

Permalink
chore(utxo-lib): improve readme of utxo-bin
Browse files Browse the repository at this point in the history
Add steps for upgrading the bin tool

BTC-0
  • Loading branch information
rushilbg committed Jul 31, 2023
1 parent c7e754d commit ba78b17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions modules/utxo-bin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ npm install --global @bitgo/utxo-bin
```

# Sample Usage
Either run using ``yarn ts-node bin/index.ts ...`` or install globally again using previous npm command.

## parseTx

Expand Down
2 changes: 1 addition & 1 deletion modules/utxo-bin/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ export const cmdParseTx = {
throw new Error(`conflicting arguments`);
}
console.log('Reading from stdin. Please paste hex-encoded transaction data.');
console.log('Press Ctrl-D to finish, or Ctrl-C to cancel.');
console.log('After inserting data, press Ctrl-D to finish. Press Ctrl-C to cancel.');
if (process.stdin.isTTY) {
data = await readStdin();
} else {
Expand Down

0 comments on commit ba78b17

Please sign in to comment.