Skip to content

Commit

Permalink
Bridge v2.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Fang- committed May 26, 2021
1 parent 3a4849a commit a3fd1ac
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bridge",
"version": "2.8.1",
"version": "2.8.2",
"description": "An application for interacting with Azimuth",
"repository": {
"type": "git",
Expand Down
3 changes: 1 addition & 2 deletions src/form/validators.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ export const buildEmailValidator = validate =>
export const buildEmailArrayValidator = () =>
buildValidator([validateUnique, buildArrayValidator(buildEmailValidator())]);

export const buildPsbtValidator = btcWallet =>
buildValidator([validatePsbt]);
export const buildPsbtValidator = btcWallet => buildValidator([validatePsbt]);

// the form validator is the composition of all of the field validators
// plus an additional form validator function
Expand Down
4 changes: 3 additions & 1 deletion src/views/Bitcoin/SignTransaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ export default function SignTransaction() {
setPsbt(newPsbt);
setSignedTx(hex);
} catch (error) {
return { unsignedTransaction: 'Cannot sign transaction, mismatching keys.' };
return {
unsignedTransaction: 'Cannot sign transaction, mismatching keys.',
};
}
};

Expand Down

0 comments on commit a3fd1ac

Please sign in to comment.