mirror of
https://github.com/status-im/status-go.git
synced 2025-02-01 17:38:36 +00:00
Fix incorrect log call format
This commit is contained in:
parent
878373ab30
commit
bbd7706b11
@ -2,6 +2,7 @@ package transactions
|
||||
|
||||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"math/big"
|
||||
"sync"
|
||||
"time"
|
||||
@ -164,7 +165,7 @@ func (t *Transactor) validateAndPropagate(selectedAccount *account.SelectedExtKe
|
||||
return hash, err
|
||||
}
|
||||
if gas < defaultGas {
|
||||
t.log.Info("default gas will be used. estimated gas", gas, "is lower than", defaultGas)
|
||||
t.log.Info(fmt.Sprintf("default gas will be used. estimated gas %v is lower than %v", gas, defaultGas))
|
||||
gas = defaultGas
|
||||
}
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user