transactions icon indicating copy to clipboard operation
transactions copied to clipboard

flatten the structure by bringing services modules up and possibly merging some togther

Open sbellem opened this issue 8 years ago • 0 comments

mainly for simplification purposes, such that instead of having something like:

class transactions.services.service.BitcoinService(testnet=False)

we can have something like:

class transactions.services.BitcoinService(testnet=False)

and perhaps, simplifying further:

class transactions.services.Bitcoin(testnet=False)

or alternatively:

class transactions.BitcoinService(testnet=False)

sbellem avatar Mar 26 '16 20:03 sbellem