chore: format (#38)

* setup

* tidy

* format

* final format

---------

Co-authored-by: aljo242 <alex@shmeeload.xyz>
This commit is contained in:
Alex Johnson
2023-09-07 11:17:21 -04:00
committed by GitHub
co-authored by aljo242
parent 533bb03c36
commit 02b29290d1
54 changed files with 104 additions and 39 deletions
+2 -1
View File
@@ -246,7 +246,8 @@ func (_m *Lane) SetIgnoreList(ignoreList []block.Lane) {
func NewLane(t interface {
mock.TestingT
Cleanup(func())
}) *Lane {
},
) *Lane {
mock := &Lane{}
mock.Mock.Test(t)
+2 -1
View File
@@ -107,7 +107,8 @@ func (_m *LaneMempool) Select(_a0 context.Context, _a1 [][]byte) mempool.Iterato
func NewLaneMempool(t interface {
mock.TestingT
Cleanup(func())
}) *LaneMempool {
},
) *LaneMempool {
mock := &LaneMempool{}
mock.Mock.Test(t)
+1
View File
@@ -4,6 +4,7 @@ import (
"testing"
"cosmossdk.io/math"
"github.com/skip-mev/block-sdk/block/utils"
)