You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
271 B

  1. #!/usr/bin/perl
  2. BEGIN { if (-e $ENV{SITE}.'/lib') { use lib $ENV{SITE}.'/lib'; } }
  3. use toychain;
  4. use TXPOOL qw(getTxMeta);
  5. use YAML::Syck qw(Dump);
  6. print "// testing getTxMeta\n";
  7. my $txblock = getTxMeta();
  8. printf "--- txblock %s...\n",Dump($txblock);
  9. exit $?;
  10. 1;