This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Pool = struct | |
module TxSet = Set.Make (KEY) | |
let data = ref TxSet.empty | |
let add ~tx = | |
match is_valid ~tx with | |
| false -> () | |
| true -> data := TxSet.add tx !data |