Files @ 9972a4c3928b
Branch filter:

Location: CSY/reowolf/testdata/basic-modules/consumer.pdl

MH
Add extra transfer test, fix bug related to delayed update of consensus manager
#module consumer

primitive consumer(in<u32> input) {
    sync {
        print("C: going to receive a value");
        auto v = get(input);
        print("C: I have received a value");
    }
    print("C: I am now exiting");
}