Skip to content

Commit

Permalink
Remove fee check
Browse files Browse the repository at this point in the history
  • Loading branch information
aaroncox committed Jan 26, 2024
1 parent 4cef653 commit d601b51
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,6 @@ export class WalletPluginCloudWallet extends AbstractWalletPlugin implements Wal
)

if (isCallback(callbackResponse)) {
// Determine if there are any fees to accept
const hasFees = callbackResponse.waxFee || callbackResponse.ramFee
if (hasFees) {
throw new Error(
'The transaction requires a fee, and the fee interface is not yet implemented.'
)
}

// The response to return to the Session Kit
const result: WalletPluginSignResponse = {
signatures: callbackResponse.signatures,
Expand Down

0 comments on commit d601b51

Please sign in to comment.