File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
packages/sequencer/src/settlement/transactions Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,9 @@ export class MinaTransactionSender {
26
26
@inject ( "BaseLayer" ) private readonly baseLayer : MinaBaseLayer
27
27
) { }
28
28
29
- private async trySendCached ( tx : Mina . Transaction ) : Promise < Mina . TransactionId | undefined > {
29
+ private async trySendCached (
30
+ tx : Mina . Transaction
31
+ ) : Promise < Mina . TransactionId | undefined > {
30
32
const feePayer = tx . transaction . feePayer . body ;
31
33
const sender = feePayer . publicKey . toBase58 ( ) ;
32
34
const senderQueue = this . txQueue [ sender ] ;
@@ -80,8 +82,6 @@ export class MinaTransactionSender {
80
82
81
83
await this . simulator . applyTransaction ( transaction ) ;
82
84
83
- console . log ( "Starting proving for Transaction" )
84
-
85
85
const resultPromise = flow . withFlow < TransactionTaskResult > (
86
86
async ( resolve , reject ) => {
87
87
await flow . pushTask (
@@ -102,7 +102,5 @@ export class MinaTransactionSender {
102
102
103
103
const result = await resultPromise ;
104
104
await this . sendOrQueue ( result . transaction ) ;
105
-
106
- console . log ( "Sent Transaction" )
107
105
}
108
106
}
You can’t perform that action at this time.
0 commit comments