Skip to content

Commit

Permalink
Fix arb APIBackend TxPoolContent fn signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
Tristan-Wilson committed Aug 3, 2023
1 parent 824de03 commit dfa78ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arbitrum/apibackend.go
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,11 @@ func (a *APIBackend) Stats() (pending int, queued int) {
panic("not implemented") // TODO: Implement
}

func (a *APIBackend) TxPoolContent() (map[common.Address]types.Transactions, map[common.Address]types.Transactions) {
func (a *APIBackend) TxPoolContent() (map[common.Address][]*types.Transaction, map[common.Address][]*types.Transaction) {
panic("not implemented") // TODO: Implement
}

func (a *APIBackend) TxPoolContentFrom(addr common.Address) (types.Transactions, types.Transactions) {
func (a *APIBackend) TxPoolContentFrom(addr common.Address) ([]*types.Transaction, []*types.Transaction) {
panic("not implemented") // TODO: Implement
}

Expand Down

0 comments on commit dfa78ab

Please sign in to comment.