From f6ace914e9204b08e8b7683b9c546264a59d55c0 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Fri, 1 Dec 2017 21:58:36 -0500 Subject: [PATCH] Allow contract overrides for nonce. --- contracts/contract.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/contract.js b/contracts/contract.js index a856f596d..6377f4f6d 100644 --- a/contracts/contract.js +++ b/contracts/contract.js @@ -15,7 +15,7 @@ var utils = (function() { })(); var allowedTransactionKeys = { - data: true, from: true, gasLimit: true, gasPrice:true, to: true, value: true + data: true, from: true, gasLimit: true, gasPrice:true, nonce: true, to: true, value: true } function copyObject(object) {