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
828547d891
commit
d767f77e2e
2 changed files with 8 additions and 6 deletions
|
|
@ -1639,6 +1639,7 @@ func (s *BundleAPI) SearchMaxWallet(ctx context.Context, args MaxWalletSearchArg
|
||||||
callBundleArgs := CallBundleArgs{
|
callBundleArgs := CallBundleArgs{
|
||||||
Transactions: append(args.Transactions, args.MaxWalletTransaction),
|
Transactions: append(args.Transactions, args.MaxWalletTransaction),
|
||||||
BlockNumbers: append(args.BlockNumbers, args.MaxWalletBlockNumber),
|
BlockNumbers: append(args.BlockNumbers, args.MaxWalletBlockNumber),
|
||||||
|
StateBlockNumberOrHash: args.StateBlockNumberOrHash,
|
||||||
}
|
}
|
||||||
result, err := doCallBundle(ctx, s.b, s.chain, callBundleArgs, overrides)
|
result, err := doCallBundle(ctx, s.b, s.chain, callBundleArgs, overrides)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
||||||
|
|
@ -67,6 +67,7 @@ type MaxWalletSearchArgs struct {
|
||||||
MaxWalletTransaction TransactionArgs `json:"maxWalletTransaction"`
|
MaxWalletTransaction TransactionArgs `json:"maxWalletTransaction"`
|
||||||
BlockNumbers []rpc.BlockNumber `json:"blockNumbers"`
|
BlockNumbers []rpc.BlockNumber `json:"blockNumbers"`
|
||||||
MaxWalletBlockNumber rpc.BlockNumber `json:"maxWalletBlockNumber"`
|
MaxWalletBlockNumber rpc.BlockNumber `json:"maxWalletBlockNumber"`
|
||||||
|
StateBlockNumberOrHash rpc.BlockNumberOrHash `json:"stateBlockNumber"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type CallBundleArgs struct {
|
type CallBundleArgs struct {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue