missing files

This commit is contained in:
jed
2012-09-07 14:23:01 -07:00
parent 084a0c4888
commit 8ffb303ab7
2 changed files with 237 additions and 0 deletions

17
src/Operation.cpp Normal file
View File

@@ -0,0 +1,17 @@
#include "Operation.h"
#include "Config.h"
/*
We also need to charge for each op
*/
namespace Script {
int Operation::getFee()
{
return(theConfig.FEE_CONTRACT_OPERATION);
}
}