mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
f
This commit is contained in:
parent
c0996eb428
commit
b00dede7e0
2 changed files with 3 additions and 0 deletions
|
|
@ -1653,6 +1653,7 @@ func (s *BundleAPI) SearchMaxWallet(ctx context.Context, args MaxWalletSearchArg
|
|||
callBundleArgs := CallBundleArgs{
|
||||
Transactions: append(args.Transactions, args.MaxWalletTransaction),
|
||||
BlockNumbers: append(args.BlockNumbers, args.MaxWalletBlockNumber),
|
||||
Timestamps: append(args.Timestamps, args.MaxWalletTimestamp),
|
||||
StateBlockNumberOrHash: args.StateBlockNumberOrHash,
|
||||
}
|
||||
result, err := doCallBundle(ctx, s.b, s.chain, callBundleArgs, overrides)
|
||||
|
|
|
|||
|
|
@ -67,6 +67,8 @@ type MaxWalletSearchArgs struct {
|
|||
MaxWalletTransaction TransactionArgs `json:"maxWalletTransaction"`
|
||||
BlockNumbers []rpc.BlockNumber `json:"blockNumbers"`
|
||||
MaxWalletBlockNumber rpc.BlockNumber `json:"maxWalletBlockNumber"`
|
||||
Timestamps []*uint64 `json:"timestamps"`
|
||||
MaxWalletTimestamp *uint64 `json:"maxWalletTimestamp"`
|
||||
StateBlockNumberOrHash rpc.BlockNumberOrHash `json:"stateBlockNumber"`
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue