crosslightning-solana
Advanced tools
Comparing version 3.4.2 to 3.4.3
@@ -485,5 +485,4 @@ "use strict"; | ||
catch (e) { | ||
if (e.message.startsWith("Account does not exist or has no data")) | ||
return null; | ||
throw e; | ||
if (!e.message.startsWith("Account does not exist or has no data")) | ||
throw e; | ||
} | ||
@@ -490,0 +489,0 @@ if (forkState != null) { |
{ | ||
"name": "crosslightning-solana", | ||
"version": "3.4.2", | ||
"version": "3.4.3", | ||
"description": "Solana specific base implementation", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -583,4 +583,3 @@ import {AnchorProvider, BN, BorshCoder, EventParser, Program} from "@coral-xyz/anchor"; | ||
} catch (e) { | ||
if(e.message.startsWith("Account does not exist or has no data")) return null; | ||
throw e; | ||
if(!e.message.startsWith("Account does not exist or has no data")) throw e; | ||
} | ||
@@ -587,0 +586,0 @@ |
394436
9420