Bump @solana/web3.js to v0.36.0 (#15)

This commit is contained in:
Justin Starry
2020-03-24 16:00:43 +08:00
committed by Michael Vines
parent 60e01116b2
commit ea705f9147
3 changed files with 8 additions and 8 deletions

View File

@ -1269,9 +1269,9 @@
"integrity": "sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw=="
},
"@solana/web3.js": {
"version": "0.35.0",
"resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.35.0.tgz",
"integrity": "sha512-YRdXWVfE8h0Yz2EirfFeKRgLXErsaBn9/2VYyCpFG0KCPmOZ9NLq/zjdfLPu8VaJzMD7ryVOM5PCPOx7TQfxPA==",
"version": "0.36.0",
"resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.36.0.tgz",
"integrity": "sha512-3kkjwxSy4c7MPDY5OhZhk/AfQdk401kEHG0ZIekzFMhR/k/N1J/HYfqt9NPs5d+SNN9zkYpu9x3JcV5cMb3jdw==",
"requires": {
"@babel/runtime": "^7.3.1",
"bn.js": "^5.0.0",
@ -1627,9 +1627,9 @@
"integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g=="
},
"@types/express-serve-static-core": {
"version": "4.17.2",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.2.tgz",
"integrity": "sha512-El9yMpctM6tORDAiBwZVLMcxoTMcqqRO9dVyYcn7ycLWbvR8klrDn8CAOwRfZujZtWD7yS/mshTdz43jMOejbg==",
"version": "4.17.3",
"resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.3.tgz",
"integrity": "sha512-sHEsvEzjqN+zLbqP+8OXTipc10yH1QLR+hnr5uw29gi9AhCAAAdri8ClNV7iMdrJrIzXIQtlkPvq8tJGhj3QJQ==",
"requires": {
"@types/node": "*",
"@types/range-parser": "*"

View File

@ -3,7 +3,7 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@solana/web3.js": "^0.35.0",
"@solana/web3.js": "^0.36.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",

View File

@ -143,7 +143,7 @@ export async function checkTransactionStatus(
if (signatureStatus === null) {
status = Status.Missing;
} else if ("Ok" in signatureStatus) {
} else if ("Ok" in signatureStatus.status) {
status = Status.Success;
} else {
status = Status.Failure;