forked from cerc-io/laconicd-deprecated
all: bump go-ethereum to v1.10.9 (#231)
* all: bump go-ethereum to v1.10.4 * build * state transition and rpc * wip rpc changes * fix refund * fixes * no base fee param * ante handler * undo change * fix test * bump deps * calculate base fee * gRPC base fee query * update RPC * fix * update' * go.mod * fix build * fix panic * rm changes in third_party * json rpc changes * reserved fields * fixes fixes fixes * rm no stringer * fixes 2 * tests wip * bump geth version * update * grpc traceTx * rm fee market from ante * fix TransactionArgs * lint * update proto * update tx args * changelog
This commit is contained in:
@@ -198,24 +198,28 @@ message AccessTuple {
|
||||
|
||||
// TraceConfig holds extra parameters to trace functions.
|
||||
message TraceConfig {
|
||||
// DEPRECATED: DisableMemory and DisableReturnData have been renamed to Enable*.
|
||||
reserved 4, 7;
|
||||
reserved "disable_memory", "disable_return_data";
|
||||
|
||||
// custom javascript tracer
|
||||
string tracer = 1;
|
||||
// overrides the default timeout of 5 seconds for JavaScript-based tracing calls
|
||||
string timeout = 2;
|
||||
// number of blocks the tracer is willing to go back
|
||||
uint64 reexec = 3;
|
||||
// disable memory capture
|
||||
bool disable_memory = 4 [ (gogoproto.jsontag) = "disableMemory" ];
|
||||
// disable stack capture
|
||||
bool disable_stack = 5 [ (gogoproto.jsontag) = "disableStack" ];
|
||||
// disable storage capture
|
||||
bool disable_storage = 6 [ (gogoproto.jsontag) = "disableStorage" ];
|
||||
// disable return data capture
|
||||
bool disable_return_data = 7 [ (gogoproto.jsontag) = "disableReturnData" ];
|
||||
// print output during capture end
|
||||
bool debug = 8;
|
||||
// maximum length of output, but zero means unlimited
|
||||
int32 limit = 9;
|
||||
// Chain overrides, can be used to execute a trace using future fork rules
|
||||
ChainConfig overrides = 10;
|
||||
}
|
||||
// enable memory capture
|
||||
bool enable_memory = 11 [ (gogoproto.jsontag) = "enableMemory" ];
|
||||
// enable return data capture
|
||||
bool enable_return_data = 12 [ (gogoproto.jsontag) = "enableReturnData" ];
|
||||
}
|
||||
|
||||
@@ -214,6 +214,10 @@ message EthCallRequest {
|
||||
bytes args = 1;
|
||||
// the default gas cap to be used
|
||||
uint64 gas_cap = 2;
|
||||
// header base fee used to generate the transaction
|
||||
string base_fee = 3 [
|
||||
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int"
|
||||
];
|
||||
}
|
||||
|
||||
// EstimateGasResponse defines EstimateGas response
|
||||
|
||||
Reference in New Issue
Block a user