fix: String representation of escrow address (#238)

* greedy approach to lane verification

* docs

* base lane testing

* mev lane testing nits

* abci top level testing done

* network spamming in E2E

* string rep of escrow address

* nit

* removing logs from testing

* query test
This commit is contained in:
David Terpay
2023-11-27 17:10:43 -05:00
committed by GitHub
parent f7dfbda2b1
commit 736b2d3997
5 changed files with 108 additions and 24 deletions
+4 -1
View File
@@ -22,6 +22,9 @@ message QueryParamsRequest {}
// QueryParamsResponse is the response type for the Query/Params RPC method.
message QueryParamsResponse {
// params defines the parameters of the module.
// Params defines the parameters of the module.
Params params = 1 [ (gogoproto.nullable) = false ];
// EscrowAddressString is the string representation of the escrow address stored
// in params.
string escrow_address_string = 2;
}