@@ -1609,9 +1609,13 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, ha
1609
1609
}
1610
1610
receipt := receipts [index ]
1611
1611
1612
- // Derive the sender.
1612
+ return ToTransactionReceipt (ctx , s .b , tx , receipt , blockHash , hash , blockNumber , index )
1613
+ }
1614
+
1615
+ func ToTransactionReceipt (ctx context.Context , b Backend , tx * types.Transaction , receipt * types.Receipt , blockHash common.Hash , hash common.Hash , blockNumber uint64 , index uint64 ) (map [string ]interface {}, error ) {
1616
+ chainConfig := b .ChainConfig ()
1613
1617
bigblock := new (big.Int ).SetUint64 (blockNumber )
1614
- signer := types .MakeSigner (s . b . ChainConfig () , bigblock )
1618
+ signer := types .MakeSigner (chainConfig , bigblock )
1615
1619
from , _ := types .Sender (signer , tx )
1616
1620
1617
1621
fields := map [string ]interface {}{
@@ -1629,10 +1633,10 @@ func (s *PublicTransactionPoolAPI) GetTransactionReceipt(ctx context.Context, ha
1629
1633
"type" : hexutil .Uint (tx .Type ()),
1630
1634
}
1631
1635
// Assign the effective gas price paid
1632
- if ! s . b . ChainConfig () .IsLondon (bigblock ) {
1636
+ if ! chainConfig .IsLondon (bigblock ) {
1633
1637
fields ["effectiveGasPrice" ] = hexutil .Uint64 (tx .GasPrice ().Uint64 ())
1634
1638
} else {
1635
- header , err := s . b .HeaderByHash (ctx , blockHash )
1639
+ header , err := b .HeaderByHash (ctx , blockHash )
1636
1640
if err != nil {
1637
1641
return nil , err
1638
1642
}
0 commit comments