File tree Expand file tree Collapse file tree
pretix_eth/static/pretix_eth Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -212,7 +212,6 @@ async function submitTransaction() {
212212 }
213213 transactionRequested = true
214214
215- displayOnlyId ( "send-transaction" )
216215 var selectedAccount = await getAccount ( ) ;
217216 let paymentDetails = await getPaymentTransactionData ( ) ;
218217 var transactionHash ;
@@ -230,6 +229,7 @@ async function submitTransaction() {
230229 return
231230 }
232231
232+ displayOnlyId ( "send-transaction" ) ;
233233 await contract . methods . transfer (
234234 paymentDetails [ 'recipient_address' ] ,
235235 paymentDetails [ 'amount' ] ,
@@ -241,6 +241,7 @@ async function submitTransaction() {
241241 showError
242242 ) ;
243243 } else { // crypto transfer
244+ displayOnlyId ( "send-transaction" ) ;
244245 await window . web3 . eth . sendTransaction (
245246 {
246247 from : selectedAccount ,
You can’t perform that action at this time.
0 commit comments