Function mempoolExists [src]
Return if a mempool exists.
Prototype
pub fn mempoolExists(pool: [*]u8) bool Parameters
pool: [*]u8 Source
pub fn mempoolExists(pool: [*]u8) bool {
return doClientRequestExpr(0, .MempoolExists, @intFromPtr(pool), 0, 0, 0, 0) != 0;
}