Are you sure you are replicated?
If I have one major complaint of PostgreSQL/Slony-I it is that you have to explicitly tell it to replicate each table and sequence in your database. So many times I have talked to people that somehow missed an object and now are in a real pinch. With some help I now have two SELECT statements that I always keep handy when working with Slony.
SELECT relname
FROM pg_catalog.pg_class
SELECT relname
Be sure you substitute CLUSTERNAME with the name of your Slony cluster. The first one finds any TABLE not being replicated and the second finds any SEQUENCE not being replicated.