Skip to content

Commit

Permalink
Allow empty tx note
Browse files Browse the repository at this point in the history
  • Loading branch information
orenyomtov committed Oct 16, 2023
1 parent e45bcea commit b693235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class FireblocksWeb3Provider extends HttpProvider {
userAgent: this.getUserAgent(),
})
this.feeLevel = config.fallbackFeeLevel || FeeLevel.MEDIUM
this.note = config.note || 'Created by Fireblocks Web3 Provider'
this.note = config.note ?? 'Created by Fireblocks Web3 Provider'
this.externalTxId = config.externalTxId;
this.gaslessGasTankVaultId = config.gaslessGasTankVaultId
this.vaultAccountIds = this.parseVaultAccountIds(config.vaultAccountIds)
Expand Down

0 comments on commit b693235

Please sign in to comment.