mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-05 07:42:57 +00:00
internal/ethapi: fix tx nonces in pool inspect/content
This commit is contained in:
parent
cb809c03da
commit
673c92db6b
1 changed files with 8 additions and 8 deletions
|
|
@ -118,16 +118,16 @@ func (s *PublicTxPoolAPI) Content() map[string]map[string]map[string]*RPCTransac
|
||||||
// Flatten the pending transactions
|
// Flatten the pending transactions
|
||||||
for account, txs := range pending {
|
for account, txs := range pending {
|
||||||
dump := make(map[string]*RPCTransaction)
|
dump := make(map[string]*RPCTransaction)
|
||||||
for nonce, tx := range txs {
|
for _, tx := range txs {
|
||||||
dump[fmt.Sprintf("%d", nonce)] = newRPCPendingTransaction(tx)
|
dump[fmt.Sprintf("%d", tx.Nonce())] = newRPCPendingTransaction(tx)
|
||||||
}
|
}
|
||||||
content["pending"][account.Hex()] = dump
|
content["pending"][account.Hex()] = dump
|
||||||
}
|
}
|
||||||
// Flatten the queued transactions
|
// Flatten the queued transactions
|
||||||
for account, txs := range queue {
|
for account, txs := range queue {
|
||||||
dump := make(map[string]*RPCTransaction)
|
dump := make(map[string]*RPCTransaction)
|
||||||
for nonce, tx := range txs {
|
for _, tx := range txs {
|
||||||
dump[fmt.Sprintf("%d", nonce)] = newRPCPendingTransaction(tx)
|
dump[fmt.Sprintf("%d", tx.Nonce())] = newRPCPendingTransaction(tx)
|
||||||
}
|
}
|
||||||
content["queued"][account.Hex()] = dump
|
content["queued"][account.Hex()] = dump
|
||||||
}
|
}
|
||||||
|
|
@ -162,16 +162,16 @@ func (s *PublicTxPoolAPI) Inspect() map[string]map[string]map[string]string {
|
||||||
// Flatten the pending transactions
|
// Flatten the pending transactions
|
||||||
for account, txs := range pending {
|
for account, txs := range pending {
|
||||||
dump := make(map[string]string)
|
dump := make(map[string]string)
|
||||||
for nonce, tx := range txs {
|
for _, tx := range txs {
|
||||||
dump[fmt.Sprintf("%d", nonce)] = format(tx)
|
dump[fmt.Sprintf("%d", tx.Nonce())] = format(tx)
|
||||||
}
|
}
|
||||||
content["pending"][account.Hex()] = dump
|
content["pending"][account.Hex()] = dump
|
||||||
}
|
}
|
||||||
// Flatten the queued transactions
|
// Flatten the queued transactions
|
||||||
for account, txs := range queue {
|
for account, txs := range queue {
|
||||||
dump := make(map[string]string)
|
dump := make(map[string]string)
|
||||||
for nonce, tx := range txs {
|
for _, tx := range txs {
|
||||||
dump[fmt.Sprintf("%d", nonce)] = format(tx)
|
dump[fmt.Sprintf("%d", tx.Nonce())] = format(tx)
|
||||||
}
|
}
|
||||||
content["queued"][account.Hex()] = dump
|
content["queued"][account.Hex()] = dump
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue