public bool Pop(out WalletTx wtx) { return(queue.TryDequeue(out wtx)); }
public void Push(WalletTx wtx) { queue.Enqueue(wtx); }