From 62e77c69f5f962292f469e5db7c5a40485bbe311 Mon Sep 17 00:00:00 2001 From: Lex Berezhny Date: Thu, 12 Jul 2018 12:38:45 -0400 Subject: [PATCH] jsonrpc_publish takes amount in lbc, not satoshi --- tests/integration/wallet/test_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/wallet/test_commands.py b/tests/integration/wallet/test_commands.py index 65f934603..bc8089d90 100644 --- a/tests/integration/wallet/test_commands.py +++ b/tests/integration/wallet/test_commands.py @@ -95,5 +95,5 @@ class PublishCommandTests(CommandTestCase): @defer.inlineCallbacks def test_publish(self): - result = yield self.daemon.jsonrpc_publish('foo', 1*COIN) + result = yield self.daemon.jsonrpc_publish('foo', 1) print(result)