mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-20 02:55:50 +00:00
21 lines
358 B
C++
21 lines
358 B
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
Copyright (c) 2011-2013, OpenCoin, Inc.
|
|
*/
|
|
//==============================================================================
|
|
|
|
/*
|
|
We also need to charge for each op
|
|
|
|
*/
|
|
|
|
namespace Script
|
|
{
|
|
|
|
|
|
int Operation::getFee ()
|
|
{
|
|
return (getConfig ().FEE_CONTRACT_OPERATION);
|
|
}
|
|
|
|
} |