mirror of
https://github.com/FlipsideCrypto/web3.py.git
synced 2026-02-06 10:56:47 +00:00
16 lines
519 B
Python
16 lines
519 B
Python
class Db(object):
|
|
def __init__(self, web3):
|
|
self.web3 = web3
|
|
|
|
def putString(self, *args, **kwargs):
|
|
raise DeprecationWarning("This function has been deprecated")
|
|
|
|
def getString(self, *args, **kwargs):
|
|
raise DeprecationWarning("This function has been deprecated")
|
|
|
|
def putHex(self, *args, **kwargs):
|
|
raise DeprecationWarning("This function has been deprecated")
|
|
|
|
def getHex(self, *args, **kwargs):
|
|
raise DeprecationWarning("This function has been deprecated")
|