mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Fix merge issue
This commit is contained in:
parent
99201b81dd
commit
ad0884661d
1 changed files with 2 additions and 2 deletions
|
|
@ -164,7 +164,7 @@ func (s *SessionManager) AddTransaction(sessionId string, tx *types.Transaction)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SessionManager) AddTransactions(sessionId string, txs types.Transactions) ([]*api.SimulateTransactionResult, error) {
|
func (s *SessionManager) AddTransactions(sessionId string, txs types.Transactions) ([]*api.SimulateTransactionResult, error) {
|
||||||
builder, err := s.getSession(sessionId)
|
builder, err := s.getSession(sessionId, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
@ -172,7 +172,7 @@ func (s *SessionManager) AddTransactions(sessionId string, txs types.Transaction
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *SessionManager) AddBundles(sessionId string, bundles []*api.Bundle) ([]*api.SimulateBundleResult, error) {
|
func (s *SessionManager) AddBundles(sessionId string, bundles []*api.Bundle) ([]*api.SimulateBundleResult, error) {
|
||||||
builder, err := s.getSession(sessionId)
|
builder, err := s.getSession(sessionId, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue